From 4b4f6a3779d40b9d95914b26a28d63688da96edb Mon Sep 17 00:00:00 2001 From: hemarina Date: Wed, 14 Aug 2024 16:04:09 -0700 Subject: [PATCH 01/13] add preflight validation api for testing --- cli/azd/pkg/azapi/deployments.go | 96 +++++++++++++++++++ .../provisioning/bicep/bicep_provider.go | 35 +++++-- cli/azd/pkg/infra/scope.go | 20 ++++ 3 files changed, 144 insertions(+), 7 deletions(-) diff --git a/cli/azd/pkg/azapi/deployments.go b/cli/azd/pkg/azapi/deployments.go index 7db9c53f8a5..141895c8d28 100644 --- a/cli/azd/pkg/azapi/deployments.go +++ b/cli/azd/pkg/azapi/deployments.go @@ -57,6 +57,24 @@ type Deployments interface { parameters azure.ArmParameters, tags map[string]*string, ) (*armresources.DeploymentExtended, error) + ValidatePreflightToSubscription( + ctx context.Context, + subscriptionId string, + location string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + ) (*armresources.DeploymentPropertiesExtended, error) + ValidatePreflightToResourceGroup( + ctx context.Context, + subscriptionId, + resourceGroup, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + ) (*armresources.DeploymentPropertiesExtended, error) WhatIfDeployToSubscription( ctx context.Context, subscriptionId string, @@ -222,6 +240,84 @@ func (ds *deployments) createDeploymentsClient( return client, nil } +func (ds *deployments) ValidatePreflightToSubscription( + ctx context.Context, + subscriptionId string, + location string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, +) (*armresources.DeploymentPropertiesExtended, error) { + deploymentClient, err := ds.createDeploymentsClient(ctx, subscriptionId) + if err != nil { + return nil, fmt.Errorf("creating deployments client: %w", err) + } + + validate, err := deploymentClient.BeginValidateAtSubscriptionScope( + ctx, deploymentName, + armresources.Deployment{ + Properties: &armresources.DeploymentProperties{ + Template: armTemplate, + Parameters: parameters, + Mode: to.Ptr(armresources.DeploymentModeIncremental), + }, + Location: to.Ptr(location), + Tags: tags, + }, nil) + if err != nil { + return nil, fmt.Errorf("starting preflight validation to subscription: %w", err) + } + + validateResult, err := validate.PollUntilDone(ctx, nil) + if err != nil { + preflightError := createDeploymentError(err) + return nil, fmt.Errorf( + "validating preflight to subscription:\n\nPreflight Error Details:\n%w", + preflightError, + ) + } + + return validateResult.DeploymentValidateResult.Properties, nil +} + +func (ds *deployments) ValidatePreflightToResourceGroup( + ctx context.Context, + subscriptionId, resourceGroup, deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, +) (*armresources.DeploymentPropertiesExtended, error) { + deploymentClient, err := ds.createDeploymentsClient(ctx, subscriptionId) + if err != nil { + return nil, fmt.Errorf("creating deployments client: %w", err) + } + + validate, err := deploymentClient.BeginValidate(ctx, resourceGroup, deploymentName, + armresources.Deployment{ + Properties: &armresources.DeploymentProperties{ + Template: armTemplate, + Parameters: parameters, + Mode: to.Ptr(armresources.DeploymentModeIncremental), + }, + Tags: tags, + }, nil) + if err != nil { + return nil, err + } + + validateResult, err := validate.PollUntilDone(ctx, nil) + if err != nil { + deploymentError := createDeploymentError(err) + return nil, fmt.Errorf( + "validating preflight to resource group:\n\nDeployment Error Details:\n%w", + deploymentError, + ) + } + + return validateResult.DeploymentValidateResult.Properties, nil +} + func (ds *deployments) DeployToSubscription( ctx context.Context, subscriptionId string, diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index 53bffb72aeb..14f3ef3b570 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -605,6 +605,24 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*DeployResult, error) { logDS(err.Error()) } + deploymentTags := map[string]*string{ + azure.TagKeyAzdEnvName: to.Ptr(p.env.Name()), + } + if parametersHashErr == nil { + deploymentTags[azure.TagKeyAzdDeploymentStateParamHashName] = to.Ptr(currentParamsHash) + } + + _, err = p.validatePreflight( + ctx, + bicepDeploymentData.Target, + bicepDeploymentData.CompiledBicep.RawArmTemplate, + bicepDeploymentData.CompiledBicep.Parameters, + deploymentTags, + ) + if err != nil { + return nil, err + } + cancelProgress := make(chan bool) defer func() { cancelProgress <- true }() go func() { @@ -642,13 +660,6 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*DeployResult, error) { // Start the deployment p.console.ShowSpinner(ctx, "Creating/Updating resources", input.Step) - - deploymentTags := map[string]*string{ - azure.TagKeyAzdEnvName: to.Ptr(p.env.Name()), - } - if parametersHashErr == nil { - deploymentTags[azure.TagKeyAzdDeploymentStateParamHashName] = to.Ptr(currentParamsHash) - } deployResult, err := p.deployModule( ctx, bicepDeploymentData.Target, @@ -1859,6 +1870,16 @@ func (p *BicepProvider) convertToDeployment(bicepTemplate azure.ArmTemplate) (*D return &template, nil } +func (p *BicepProvider) validatePreflight( + ctx context.Context, + target infra.Deployment, + armTemplate azure.RawArmTemplate, + armParameters azure.ArmParameters, + tags map[string]*string, +) (*armresources.DeploymentPropertiesExtended, error) { + return target.ValidatePreflight(ctx, armTemplate, armParameters, tags) +} + // Deploys the specified Bicep module and parameters with the selected provisioning scope (subscription vs resource group) func (p *BicepProvider) deployModule( ctx context.Context, diff --git a/cli/azd/pkg/infra/scope.go b/cli/azd/pkg/infra/scope.go index 2ac02c0bada..bf682fccf35 100644 --- a/cli/azd/pkg/infra/scope.go +++ b/cli/azd/pkg/infra/scope.go @@ -29,6 +29,13 @@ type Deployment interface { // OutputsUrl is the URL that may be used to view this deployment outputs the in Azure Portal. OutputsUrl() string // Deploy a given template with a set of parameters. + ValidatePreflight( + ctx context.Context, + template azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + ) (*armresources.DeploymentPropertiesExtended, error) + // Deploy a given template with a set of parameters. Deploy( ctx context.Context, template azure.RawArmTemplate, @@ -67,6 +74,13 @@ func (s *ResourceGroupDeployment) ResourceGroupName() string { return s.resourceGroupName } +func (s *ResourceGroupDeployment) ValidatePreflight( + ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, +) (*armresources.DeploymentPropertiesExtended, error) { + return s.deployments.ValidatePreflightToResourceGroup( + ctx, s.subscriptionId, s.resourceGroupName, s.name, template, parameters, tags) +} + func (s *ResourceGroupDeployment) Deploy( ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, ) (*armresources.DeploymentExtended, error) { @@ -200,6 +214,12 @@ func (s *SubscriptionDeployment) Location() string { return s.location } +func (s *SubscriptionDeployment) ValidatePreflight( + ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, +) (*armresources.DeploymentPropertiesExtended, error) { + return s.deploymentsService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, s.name, template, parameters, tags) +} + // Deploy a given template with a set of parameters. func (s *SubscriptionDeployment) Deploy( ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, From 4c267fd57c622208a200789036728c977b5c8e9d Mon Sep 17 00:00:00 2001 From: hemarina Date: Tue, 20 Aug 2024 09:54:06 -0700 Subject: [PATCH 02/13] go error --- cli/azd/pkg/azapi/deployments.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/azd/pkg/azapi/deployments.go b/cli/azd/pkg/azapi/deployments.go index 141895c8d28..fecf0be0717 100644 --- a/cli/azd/pkg/azapi/deployments.go +++ b/cli/azd/pkg/azapi/deployments.go @@ -303,7 +303,7 @@ func (ds *deployments) ValidatePreflightToResourceGroup( Tags: tags, }, nil) if err != nil { - return nil, err + return nil, fmt.Errorf("calling preflight validate api failing: %w", err) } validateResult, err := validate.PollUntilDone(ctx, nil) From 1dd22462927c30ea3f52b84441ab1cfbbaeeef2e Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Wed, 21 Aug 2024 16:25:39 -0700 Subject: [PATCH 03/13] exec: Don't depend on internals of `os.Process` (#4233) To assign the process to the job object after we create it, we need the `windows.Handle` that backs the process we started with `os/exec`. This was not exported and so we used some gnarly casting to cast the `os.Process` to a structure we authored that had the same layout of `os.Process` so we could grab the handle property. This is unsafe if the layout of the `os.Process` changes, which it did in Go 1.23. Move to code that doesn't depend on the internals of `os.Process` by using the exported Pid to call `windows.OpenProcess` to get a handle and then pass that along to `windows.AssignProcessToJobObject`. --- cli/azd/pkg/exec/cmdtree_windows.go | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/cli/azd/pkg/exec/cmdtree_windows.go b/cli/azd/pkg/exec/cmdtree_windows.go index afebaebe250..fea99d5a35d 100644 --- a/cli/azd/pkg/exec/cmdtree_windows.go +++ b/cli/azd/pkg/exec/cmdtree_windows.go @@ -25,11 +25,6 @@ type CmdTree struct { jobObject windows.Handle } -type winProcess struct { - _ uint32 //pid - hndl windows.Handle -} - func (o *CmdTree) Start() error { o.SysProcAttr = &syscall.SysProcAttr{ CreationFlags: syscall.CREATE_NEW_PROCESS_GROUP, @@ -62,9 +57,18 @@ func (o *CmdTree) Start() error { return fmt.Errorf("failed to set job object info: %w", err) } - err = windows.AssignProcessToJobObject( - o.jobObject, - (*winProcess)(unsafe.Pointer(o.Process)).hndl) + process, err := windows.OpenProcess(windows.PROCESS_SET_QUOTA|windows.PROCESS_TERMINATE, false, uint32(o.Process.Pid)) + if err != nil { + return fmt.Errorf("failed to open process: %w", err) + } + defer func() { + err := windows.CloseHandle(process) + if err != nil { + log.Printf("failed to close process handle: %s\n", err) + } + }() + + err = windows.AssignProcessToJobObject(o.jobObject, process) if err != nil { return fmt.Errorf("failed to assign process to job object: %w", err) @@ -74,7 +78,7 @@ func (o *CmdTree) Start() error { } func (o *CmdTree) Kill() { - err := windows.TerminateJobObject(windows.Handle(o.jobObject), 0) + err := windows.TerminateJobObject(o.jobObject, 0) if err != nil { log.Printf("failed to terminate job object %d: %s\n", o.jobObject, err) } From 24bef4fa2b277330734883e4341f651ca907fa82 Mon Sep 17 00:00:00 2001 From: hemarina Date: Tue, 17 Sep 2024 06:22:43 -0700 Subject: [PATCH 04/13] update error message --- cli/azd/pkg/azapi/deployments.go | 43 ++++++++++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) diff --git a/cli/azd/pkg/azapi/deployments.go b/cli/azd/pkg/azapi/deployments.go index fecf0be0717..8c4b70f67b5 100644 --- a/cli/azd/pkg/azapi/deployments.go +++ b/cli/azd/pkg/azapi/deployments.go @@ -5,13 +5,16 @@ package azapi import ( "context" + "encoding/json" "errors" "fmt" "io" + "net/http" "time" "github.com/Azure/azure-sdk-for-go/sdk/azcore" "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" + "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources" "github.com/azure/azure-dev/cli/azd/pkg/account" @@ -66,6 +69,7 @@ type Deployments interface { parameters azure.ArmParameters, tags map[string]*string, ) (*armresources.DeploymentPropertiesExtended, error) + // TODO Check if what if function bug is fixed ValidatePreflightToResourceGroup( ctx context.Context, subscriptionId, @@ -281,6 +285,17 @@ func (ds *deployments) ValidatePreflightToSubscription( return validateResult.DeploymentValidateResult.Properties, nil } +type PreflightErrorResponse struct { + Error struct { + Code string `json:"code"` + Message string `json:"message"` + Details []struct { + Code string `json:"code"` + Message string `json:"message"` + } `json:"details"` + } `json:"error"` +} + func (ds *deployments) ValidatePreflightToResourceGroup( ctx context.Context, subscriptionId, resourceGroup, deploymentName string, @@ -293,7 +308,10 @@ func (ds *deployments) ValidatePreflightToResourceGroup( return nil, fmt.Errorf("creating deployments client: %w", err) } - validate, err := deploymentClient.BeginValidate(ctx, resourceGroup, deploymentName, + var rawResponse *http.Response + ctxWithResp := runtime.WithCaptureResponse(ctx, &rawResponse) + + validate, err := deploymentClient.BeginValidate(ctxWithResp, resourceGroup, deploymentName, armresources.Deployment{ Properties: &armresources.DeploymentProperties{ Template: armTemplate, @@ -303,7 +321,28 @@ func (ds *deployments) ValidatePreflightToResourceGroup( Tags: tags, }, nil) if err != nil { - return nil, fmt.Errorf("calling preflight validate api failing: %w", err) + if rawResponse.StatusCode != 400 { + return nil, fmt.Errorf("calling preflight validate api failing: %w", err) + } + + defer rawResponse.Body.Close() + body, errOnRawResponse := io.ReadAll(rawResponse.Body) + if errOnRawResponse != nil { + return nil, fmt.Errorf("failed to read response error body from preflight api: %w", errOnRawResponse) + } + + var errPreflight PreflightErrorResponse + errOnRawResponse = json.Unmarshal(body, &errPreflight) + if errOnRawResponse != nil { + return nil, fmt.Errorf("failed to unmarshal preflight error response: %v", errOnRawResponse) + } + + if len(errPreflight.Error.Details) > 0 { + detailMessage := errPreflight.Error.Details[0].Message + return nil, fmt.Errorf("calling preflight validate api failing: %s", detailMessage) + } else { + return nil, fmt.Errorf("calling preflight validate api failing: %w", err) + } } validateResult, err := validate.PollUntilDone(ctx, nil) From 5fd5d084fc88d810b66ef1dbb0ec26213a6702a0 Mon Sep 17 00:00:00 2001 From: hemarina Date: Tue, 17 Sep 2024 07:56:53 -0700 Subject: [PATCH 05/13] apply changes due to stack deployments --- cli/azd/pkg/azapi/deployments.go | 12 +- cli/azd/pkg/azapi/stack_deployments.go | 121 +++++++++++++++++ cli/azd/pkg/azapi/standard_deployments.go | 128 ++++++++++++++++++ .../provisioning/bicep/bicep_provider.go | 4 +- cli/azd/pkg/infra/scope.go | 10 +- 5 files changed, 259 insertions(+), 16 deletions(-) diff --git a/cli/azd/pkg/azapi/deployments.go b/cli/azd/pkg/azapi/deployments.go index fc19cad97ed..7dc6b556276 100644 --- a/cli/azd/pkg/azapi/deployments.go +++ b/cli/azd/pkg/azapi/deployments.go @@ -5,16 +5,11 @@ package azapi import ( "context" - "encoding/json" "errors" "io" - "net/http" "time" "github.com/Azure/azure-sdk-for-go/sdk/azcore" - "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" - "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" - "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources" "github.com/azure/azure-dev/cli/azd/pkg/async" "github.com/azure/azure-dev/cli/azd/pkg/azure" @@ -178,8 +173,7 @@ type DeploymentService interface { armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, - ) (*armresources.DeploymentPropertiesExtended, error) - // TODO Check if what if function bug is fixed + ) error ValidatePreflightToResourceGroup( ctx context.Context, subscriptionId, @@ -188,7 +182,7 @@ type DeploymentService interface { armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, - ) (*armresources.DeploymentPropertiesExtended, error) + ) error WhatIfDeployToSubscription( ctx context.Context, subscriptionId string, @@ -359,4 +353,4 @@ func createDeploymentError(err error) error { } return err -} \ No newline at end of file +} diff --git a/cli/azd/pkg/azapi/stack_deployments.go b/cli/azd/pkg/azapi/stack_deployments.go index 716116db789..6bfd94b222d 100644 --- a/cli/azd/pkg/azapi/stack_deployments.go +++ b/cli/azd/pkg/azapi/stack_deployments.go @@ -634,3 +634,124 @@ func convertFromStacksProvisioningState( return DeploymentProvisioningState("") } + +func (d *StackDeployments) ValidatePreflightToResourceGroup( + ctx context.Context, + subscriptionId string, + resourceGroup string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, +) error { + client, err := d.createClient(ctx, subscriptionId) + if err != nil { + return err + } + + templateHash, err := d.CalculateTemplateHash(ctx, subscriptionId, armTemplate) + if err != nil { + return fmt.Errorf("failed to calculate template hash: %w", err) + } + + clonedTags := maps.Clone(tags) + clonedTags[azure.TagKeyAzdDeploymentTemplateHashName] = &templateHash + + stackParams := map[string]*armdeploymentstacks.DeploymentParameter{} + for k, v := range parameters { + stackParams[k] = &armdeploymentstacks.DeploymentParameter{ + Value: v.Value, + } + } + + deleteBehavior := armdeploymentstacks.DeploymentStacksDeleteDetachEnumDelete + + stack := armdeploymentstacks.DeploymentStack{ + Tags: clonedTags, + Properties: &armdeploymentstacks.DeploymentStackProperties{ + BypassStackOutOfSyncError: to.Ptr(false), + ActionOnUnmanage: &armdeploymentstacks.ActionOnUnmanage{ + Resources: &deleteBehavior, + ManagementGroups: &deleteBehavior, + ResourceGroups: &deleteBehavior, + }, + DenySettings: &armdeploymentstacks.DenySettings{ + Mode: to.Ptr(armdeploymentstacks.DenySettingsModeNone), + }, + Parameters: stackParams, + Template: armTemplate, + }, + } + poller, err := client.BeginValidateStackAtResourceGroup(ctx, resourceGroup, deploymentName, stack, nil) + if err != nil { + return err + } + + _, err = poller.PollUntilDone(ctx, nil) + if err != nil { + return err + } + + return nil +} + +func (d *StackDeployments) ValidatePreflightToSubscription( + ctx context.Context, + subscriptionId string, + location string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, +) error { + client, err := d.createClient(ctx, subscriptionId) + if err != nil { + return err + } + + templateHash, err := d.CalculateTemplateHash(ctx, subscriptionId, armTemplate) + if err != nil { + return fmt.Errorf("failed to calculate template hash: %w", err) + } + + clonedTags := maps.Clone(tags) + clonedTags[azure.TagKeyAzdDeploymentTemplateHashName] = &templateHash + + stackParams := map[string]*armdeploymentstacks.DeploymentParameter{} + for k, v := range parameters { + stackParams[k] = &armdeploymentstacks.DeploymentParameter{ + Value: v.Value, + } + } + + deleteBehavior := armdeploymentstacks.DeploymentStacksDeleteDetachEnumDelete + + stack := armdeploymentstacks.DeploymentStack{ + Location: &location, + Tags: clonedTags, + Properties: &armdeploymentstacks.DeploymentStackProperties{ + BypassStackOutOfSyncError: to.Ptr(false), + ActionOnUnmanage: &armdeploymentstacks.ActionOnUnmanage{ + Resources: &deleteBehavior, + ManagementGroups: &deleteBehavior, + ResourceGroups: &deleteBehavior, + }, + DenySettings: &armdeploymentstacks.DenySettings{ + Mode: to.Ptr(armdeploymentstacks.DenySettingsModeNone), + }, + Parameters: stackParams, + Template: armTemplate, + }, + } + poller, err := client.BeginValidateStackAtSubscription(ctx, deploymentName, stack, nil) + if err != nil { + return err + } + + _, err = poller.PollUntilDone(ctx, nil) + if err != nil { + return err + } + + return nil +} diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index 0a1a5c675ed..df02e947a63 100644 --- a/cli/azd/pkg/azapi/standard_deployments.go +++ b/cli/azd/pkg/azapi/standard_deployments.go @@ -5,10 +5,13 @@ import ( "encoding/json" "errors" "fmt" + "io" + "net/http" "net/url" "github.com/Azure/azure-sdk-for-go/sdk/azcore" "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" + "github.com/Azure/azure-sdk-for-go/sdk/azcore/runtime" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources" "github.com/azure/azure-dev/cli/azd/pkg/account" @@ -683,3 +686,128 @@ func convertFromStandardProvisioningState(state armresources.ProvisioningState) return DeploymentProvisioningState("") } + +func (ds *StandardDeployments) ValidatePreflightToSubscription( + ctx context.Context, + subscriptionId string, + location string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, +) error { + deploymentClient, err := ds.createDeploymentsClient(ctx, subscriptionId) + if err != nil { + return fmt.Errorf("creating deployments client: %w", err) + } + + var rawResponse *http.Response + ctxWithResp := runtime.WithCaptureResponse(ctx, &rawResponse) + + validate, err := deploymentClient.BeginValidateAtSubscriptionScope( + ctxWithResp, deploymentName, + armresources.Deployment{ + Properties: &armresources.DeploymentProperties{ + Template: armTemplate, + Parameters: parameters, + Mode: to.Ptr(armresources.DeploymentModeIncremental), + }, + Location: to.Ptr(location), + Tags: tags, + }, nil) + if err != nil { + return validatePreflightError(rawResponse, err, "subscription") + } + + _, err = validate.PollUntilDone(ctx, nil) + if err != nil { + preflightError := createDeploymentError(err) + return fmt.Errorf( + "validating preflight to subscription:\n\nPreflight Error Details:\n%w", + preflightError, + ) + } + + return nil +} + +type PreflightErrorResponse struct { + Error struct { + Code string `json:"code"` + Message string `json:"message"` + Details []struct { + Code string `json:"code"` + Message string `json:"message"` + } `json:"details"` + } `json:"error"` +} + +func validatePreflightError( + rawResponse *http.Response, + err error, + typeMessage string, +) error { + if rawResponse.StatusCode != 400 { + return fmt.Errorf("calling preflight validate api failing to %s: %w", typeMessage, err) + } + + defer rawResponse.Body.Close() + body, errOnRawResponse := io.ReadAll(rawResponse.Body) + if errOnRawResponse != nil { + return fmt.Errorf("failed to read response error body from preflight api to %s: %w", typeMessage, errOnRawResponse) + } + + var errPreflight PreflightErrorResponse + errOnRawResponse = json.Unmarshal(body, &errPreflight) + if errOnRawResponse != nil { + return fmt.Errorf("failed to unmarshal preflight error response to %s: %v", typeMessage, errOnRawResponse) + } + + if len(errPreflight.Error.Details) > 0 { + detailMessage := errPreflight.Error.Details[0].Message + return fmt.Errorf("calling preflight validate api failing to %s: %s", typeMessage, detailMessage) + } else { + return fmt.Errorf("calling preflight validate api failing to %s: %w", typeMessage, err) + } + return nil +} + +func (ds *StandardDeployments) ValidatePreflightToResourceGroup( + ctx context.Context, + subscriptionId, resourceGroup, deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, +) error { + deploymentClient, err := ds.createDeploymentsClient(ctx, subscriptionId) + if err != nil { + return fmt.Errorf("creating deployments client: %w", err) + } + + var rawResponse *http.Response + ctxWithResp := runtime.WithCaptureResponse(ctx, &rawResponse) + + validate, err := deploymentClient.BeginValidate(ctxWithResp, resourceGroup, deploymentName, + armresources.Deployment{ + Properties: &armresources.DeploymentProperties{ + Template: armTemplate, + Parameters: parameters, + Mode: to.Ptr(armresources.DeploymentModeIncremental), + }, + Tags: tags, + }, nil) + if err != nil { + return validatePreflightError(rawResponse, err, "resource group") + } + + _, err = validate.PollUntilDone(ctx, nil) + if err != nil { + deploymentError := createDeploymentError(err) + return fmt.Errorf( + "validating preflight to resource group:\n\nDeployment Error Details:\n%w", + deploymentError, + ) + } + + return nil +} \ No newline at end of file diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index 5db278f4ff6..476b90a3b82 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -568,7 +568,7 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*provisioning.DeployResult, deploymentTags[azure.TagKeyAzdDeploymentStateParamHashName] = to.Ptr(currentParamsHash) } - _, err = p.validatePreflight( + err = p.validatePreflight( ctx, bicepDeploymentData.Target, bicepDeploymentData.CompiledBicep.RawArmTemplate, @@ -1726,7 +1726,7 @@ func (p *BicepProvider) validatePreflight( armTemplate azure.RawArmTemplate, armParameters azure.ArmParameters, tags map[string]*string, -) (*armresources.DeploymentPropertiesExtended, error) { +) error { return target.ValidatePreflight(ctx, armTemplate, armParameters, tags) } diff --git a/cli/azd/pkg/infra/scope.go b/cli/azd/pkg/infra/scope.go index 8f5eff1f029..998422b005d 100644 --- a/cli/azd/pkg/infra/scope.go +++ b/cli/azd/pkg/infra/scope.go @@ -36,7 +36,7 @@ type Deployment interface { template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, - ) (*armresources.DeploymentPropertiesExtended, error) + ) error // Deploy a given template with a set of parameters. Deploy( ctx context.Context, @@ -70,8 +70,8 @@ func (s *ResourceGroupDeployment) Name() string { func (s *ResourceGroupDeployment) ValidatePreflight( ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, -) (*armresources.DeploymentPropertiesExtended, error) { - return s.deployments.ValidatePreflightToResourceGroup( +) error { + return s.deploymentService.ValidatePreflightToResourceGroup( ctx, s.subscriptionId, s.resourceGroupName, s.name, template, parameters, tags) } @@ -256,8 +256,8 @@ func (s *SubscriptionDeployment) DeploymentUrl(ctx context.Context) (string, err func (s *SubscriptionDeployment) ValidatePreflight( ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, -) (*armresources.DeploymentPropertiesExtended, error) { - return s.deploymentsService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, s.name, template, parameters, tags) +) error { + return s.deploymentService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, s.name, template, parameters, tags) } // Deploy a given template with a set of parameters. From 4531513572e6d5794480e69722f8bbf4dd0990d3 Mon Sep 17 00:00:00 2001 From: hemarina Date: Thu, 19 Sep 2024 16:01:04 -0700 Subject: [PATCH 06/13] remove unneed line --- cli/azd/pkg/azapi/standard_deployments.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index df02e947a63..19a2733b712 100644 --- a/cli/azd/pkg/azapi/standard_deployments.go +++ b/cli/azd/pkg/azapi/standard_deployments.go @@ -769,7 +769,6 @@ func validatePreflightError( } else { return fmt.Errorf("calling preflight validate api failing to %s: %w", typeMessage, err) } - return nil } func (ds *StandardDeployments) ValidatePreflightToResourceGroup( @@ -810,4 +809,4 @@ func (ds *StandardDeployments) ValidatePreflightToResourceGroup( } return nil -} \ No newline at end of file +} From d9554288db02802e00db57d98c16b3205d6b6d52 Mon Sep 17 00:00:00 2001 From: hemarina Date: Fri, 20 Sep 2024 14:56:36 -0700 Subject: [PATCH 07/13] golangci-lint fix --- cli/azd/pkg/azapi/standard_deployments.go | 2 +- cli/azd/pkg/infra/scope.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index 19a2733b712..10de3b65c50 100644 --- a/cli/azd/pkg/azapi/standard_deployments.go +++ b/cli/azd/pkg/azapi/standard_deployments.go @@ -760,7 +760,7 @@ func validatePreflightError( var errPreflight PreflightErrorResponse errOnRawResponse = json.Unmarshal(body, &errPreflight) if errOnRawResponse != nil { - return fmt.Errorf("failed to unmarshal preflight error response to %s: %v", typeMessage, errOnRawResponse) + return fmt.Errorf("failed to unmarshal preflight error response to %s: %w", typeMessage, errOnRawResponse) } if len(errPreflight.Error.Details) > 0 { diff --git a/cli/azd/pkg/infra/scope.go b/cli/azd/pkg/infra/scope.go index 998422b005d..1c977c070d7 100644 --- a/cli/azd/pkg/infra/scope.go +++ b/cli/azd/pkg/infra/scope.go @@ -257,7 +257,8 @@ func (s *SubscriptionDeployment) DeploymentUrl(ctx context.Context) (string, err func (s *SubscriptionDeployment) ValidatePreflight( ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, ) error { - return s.deploymentService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, s.name, template, parameters, tags) + return s.deploymentService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, + s.name, template, parameters, tags) } // Deploy a given template with a set of parameters. From e17c1db58a88596941b8998936338b34b1098ec4 Mon Sep 17 00:00:00 2001 From: hemarina Date: Mon, 14 Oct 2024 10:50:31 -0700 Subject: [PATCH 08/13] apply options with deployment stack updates --- cli/azd/pkg/azapi/deployments.go | 2 + cli/azd/pkg/azapi/stack_deployments.go | 44 +++++++++---------- cli/azd/pkg/azapi/standard_deployments.go | 2 + .../provisioning/bicep/bicep_provider.go | 14 +++--- cli/azd/pkg/infra/scope.go | 19 +++++--- 5 files changed, 46 insertions(+), 35 deletions(-) diff --git a/cli/azd/pkg/azapi/deployments.go b/cli/azd/pkg/azapi/deployments.go index 617a2e18294..47a7c29c92f 100644 --- a/cli/azd/pkg/azapi/deployments.go +++ b/cli/azd/pkg/azapi/deployments.go @@ -175,6 +175,7 @@ type DeploymentService interface { armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error ValidatePreflightToResourceGroup( ctx context.Context, @@ -184,6 +185,7 @@ type DeploymentService interface { armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error WhatIfDeployToSubscription( ctx context.Context, diff --git a/cli/azd/pkg/azapi/stack_deployments.go b/cli/azd/pkg/azapi/stack_deployments.go index 94c9b1af8e7..8fa089d325e 100644 --- a/cli/azd/pkg/azapi/stack_deployments.go +++ b/cli/azd/pkg/azapi/stack_deployments.go @@ -752,6 +752,7 @@ func (d *StackDeployments) ValidatePreflightToResourceGroup( armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error { client, err := d.createClient(ctx, subscriptionId) if err != nil { @@ -773,22 +774,19 @@ func (d *StackDeployments) ValidatePreflightToResourceGroup( } } - deleteBehavior := armdeploymentstacks.DeploymentStacksDeleteDetachEnumDelete + deploymentStackOptions, err := parseDeploymentStackOptions(options) + if err != nil { + return err + } stack := armdeploymentstacks.DeploymentStack{ Tags: clonedTags, Properties: &armdeploymentstacks.DeploymentStackProperties{ - BypassStackOutOfSyncError: to.Ptr(false), - ActionOnUnmanage: &armdeploymentstacks.ActionOnUnmanage{ - Resources: &deleteBehavior, - ManagementGroups: &deleteBehavior, - ResourceGroups: &deleteBehavior, - }, - DenySettings: &armdeploymentstacks.DenySettings{ - Mode: to.Ptr(armdeploymentstacks.DenySettingsModeNone), - }, - Parameters: stackParams, - Template: armTemplate, + BypassStackOutOfSyncError: deploymentStackOptions.BypassStackOutOfSyncError, + ActionOnUnmanage: deploymentStackOptions.ActionOnUnmanage, + DenySettings: deploymentStackOptions.DenySettings, + Parameters: stackParams, + Template: armTemplate, }, } poller, err := client.BeginValidateStackAtResourceGroup(ctx, resourceGroup, deploymentName, stack, nil) @@ -812,6 +810,7 @@ func (d *StackDeployments) ValidatePreflightToSubscription( armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error { client, err := d.createClient(ctx, subscriptionId) if err != nil { @@ -833,23 +832,20 @@ func (d *StackDeployments) ValidatePreflightToSubscription( } } - deleteBehavior := armdeploymentstacks.DeploymentStacksDeleteDetachEnumDelete + deploymentStackOptions, err := parseDeploymentStackOptions(options) + if err != nil { + return err + } stack := armdeploymentstacks.DeploymentStack{ Location: &location, Tags: clonedTags, Properties: &armdeploymentstacks.DeploymentStackProperties{ - BypassStackOutOfSyncError: to.Ptr(false), - ActionOnUnmanage: &armdeploymentstacks.ActionOnUnmanage{ - Resources: &deleteBehavior, - ManagementGroups: &deleteBehavior, - ResourceGroups: &deleteBehavior, - }, - DenySettings: &armdeploymentstacks.DenySettings{ - Mode: to.Ptr(armdeploymentstacks.DenySettingsModeNone), - }, - Parameters: stackParams, - Template: armTemplate, + BypassStackOutOfSyncError: deploymentStackOptions.BypassStackOutOfSyncError, + ActionOnUnmanage: deploymentStackOptions.ActionOnUnmanage, + DenySettings: deploymentStackOptions.DenySettings, + Parameters: stackParams, + Template: armTemplate, }, } poller, err := client.BeginValidateStackAtSubscription(ctx, deploymentName, stack, nil) diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index 03a2e46adcb..2b15f015b20 100644 --- a/cli/azd/pkg/azapi/standard_deployments.go +++ b/cli/azd/pkg/azapi/standard_deployments.go @@ -700,6 +700,7 @@ func (ds *StandardDeployments) ValidatePreflightToSubscription( armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error { deploymentClient, err := ds.createDeploymentsClient(ctx, subscriptionId) if err != nil { @@ -782,6 +783,7 @@ func (ds *StandardDeployments) ValidatePreflightToResourceGroup( armTemplate azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error { deploymentClient, err := ds.createDeploymentsClient(ctx, subscriptionId) if err != nil { diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index 4db46220108..0d8a31e31d4 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -563,12 +563,18 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*provisioning.DeployResult, deploymentTags[azure.TagKeyAzdDeploymentStateParamHashName] = to.Ptr(currentParamsHash) } + optionsMap, err := convert.ToMap(p.options) + if err != nil { + return nil, err + } + err = p.validatePreflight( ctx, bicepDeploymentData.Target, bicepDeploymentData.CompiledBicep.RawArmTemplate, bicepDeploymentData.CompiledBicep.Parameters, deploymentTags, + optionsMap, ) if err != nil { return nil, err @@ -611,11 +617,6 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*provisioning.DeployResult, // Start the deployment p.console.ShowSpinner(ctx, "Creating/Updating resources", input.Step) - optionsMap, err := convert.ToMap(p.options) - if err != nil { - return nil, err - } - deployResult, err := p.deployModule( ctx, bicepDeploymentData.Target, @@ -1735,8 +1736,9 @@ func (p *BicepProvider) validatePreflight( armTemplate azure.RawArmTemplate, armParameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error { - return target.ValidatePreflight(ctx, armTemplate, armParameters, tags) + return target.ValidatePreflight(ctx, armTemplate, armParameters, tags, options) } // Deploys the specified Bicep module and parameters with the selected provisioning scope (subscription vs resource group) diff --git a/cli/azd/pkg/infra/scope.go b/cli/azd/pkg/infra/scope.go index b54b71dffc0..5a18756078f 100644 --- a/cli/azd/pkg/infra/scope.go +++ b/cli/azd/pkg/infra/scope.go @@ -36,6 +36,7 @@ type Deployment interface { template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + options map[string]any, ) error // Deploy a given template with a set of parameters. Deploy( @@ -73,10 +74,14 @@ func (s *ResourceGroupDeployment) Name() string { } func (s *ResourceGroupDeployment) ValidatePreflight( - ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + ctx context.Context, + template azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, ) error { return s.deploymentService.ValidatePreflightToResourceGroup( - ctx, s.subscriptionId, s.resourceGroupName, s.name, template, parameters, tags) + ctx, s.subscriptionId, s.resourceGroupName, s.name, template, parameters, tags, options) } func (s *ResourceGroupDeployment) Deploy( @@ -271,10 +276,14 @@ func (s *SubscriptionDeployment) DeploymentUrl(ctx context.Context) (string, err } func (s *SubscriptionDeployment) ValidatePreflight( - ctx context.Context, template azure.RawArmTemplate, parameters azure.ArmParameters, tags map[string]*string, + ctx context.Context, + template azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, ) error { - return s.deploymentService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, - s.name, template, parameters, tags) + return s.deploymentService.ValidatePreflightToSubscription(ctx, s.subscriptionId, s.location, + s.name, template, parameters, tags, options) } // Deploy a given template with a set of parameters. From 4ae5dc12dfcc195ecac2fad909dc685d4a615f0c Mon Sep 17 00:00:00 2001 From: hemarina Date: Mon, 14 Oct 2024 15:31:38 -0700 Subject: [PATCH 09/13] golang --- cli/azd/pkg/infra/scope.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/azd/pkg/infra/scope.go b/cli/azd/pkg/infra/scope.go index 5a18756078f..44d1f6a0aed 100644 --- a/cli/azd/pkg/infra/scope.go +++ b/cli/azd/pkg/infra/scope.go @@ -276,9 +276,9 @@ func (s *SubscriptionDeployment) DeploymentUrl(ctx context.Context) (string, err } func (s *SubscriptionDeployment) ValidatePreflight( - ctx context.Context, - template azure.RawArmTemplate, - parameters azure.ArmParameters, + ctx context.Context, + template azure.RawArmTemplate, + parameters azure.ArmParameters, tags map[string]*string, options map[string]any, ) error { From 7bab2e21358fb22c9db3144e724c7b1568a3bdab Mon Sep 17 00:00:00 2001 From: hemarina Date: Mon, 14 Oct 2024 18:23:49 -0700 Subject: [PATCH 10/13] recording test --- .../Test_CLI_Up_Down_ContainerApp.docker.yaml | 215 +- .../Test_CLI_Up_Down_ContainerApp.yaml | 1280 +++-- ..._CLI_Up_Down_ContainerApp_RemoteBuild.yaml | 4425 +++++++++-------- .../recordings/Test_StorageBlobClient.yaml | 919 +++- .../Test_StorageBlobClient/Crud.yaml | 134 +- 5 files changed, 3999 insertions(+), 2974 deletions(-) diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.docker.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.docker.yaml index 06e113eb12a..4e085e13622 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.docker.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_Down_ContainerApp.docker.yaml @@ -7,7 +7,7 @@ interactions: - --username - 00000000-0000-0000-0000-000000000000 - --password-stdin - - crsf5eumltrz36q.azurecr.io + - crgh7yf7apixojm.azurecr.io exitCode: 0 stdout: | Login Succeeded @@ -15,28 +15,197 @@ interactions: - id: 1 args: - push - - crsf5eumltrz36q.azurecr.io/containerapp/web-azdtest-w962778:azd-deploy-1724378473 + - crgh7yf7apixojm.azurecr.io/containerapp/web-azdtest-wddd0c3:azd-deploy-1728949373 exitCode: 0 stdout: | - The push refers to repository [crsf5eumltrz36q.azurecr.io/containerapp/web-azdtest-w962778] - b7b31a6def4a: Preparing - f1eb51fe2419: Preparing - 4b5f9ea48c8a: Preparing - 8b270f8da824: Preparing - 9102fd62231f: Preparing - e74c54caa59e: Preparing - f553d2208193: Preparing - 9853575bc4f9: Preparing - f553d2208193: Waiting - 9853575bc4f9: Waiting - e74c54caa59e: Waiting - b7b31a6def4a: Pushed - 8b270f8da824: Pushed - f1eb51fe2419: Pushed - e74c54caa59e: Pushed - 4b5f9ea48c8a: Pushed - f553d2208193: Pushed - 9102fd62231f: Pushed - 9853575bc4f9: Pushed - azd-deploy-1724378473: digest: sha256:0f7ab317d9babc433903bf13ac1333ab71fb25164850f97c10b3c1d0772d8109 size: 1995 + The push refers to repository [crgh7yf7apixojm.azurecr.io/containerapp/web-azdtest-wddd0c3] + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 302e3ee49805: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 1f15df2ada16: Waiting + aafc33d0a31e: Waiting + f3f742f3a506: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + bebb4f92cb8e: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + aafc33d0a31e: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 302e3ee49805: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + 302e3ee49805: Waiting + b59628a00a3f: Waiting + 5114c86b7dba: Waiting + aafc33d0a31e: Waiting + aafc33d0a31e: Waiting + b59628a00a3f: Waiting + 68abe8aaf35a: Waiting + eaa75e6244ab: Waiting + f3f742f3a506: Pushed + b59628a00a3f: Waiting + bebb4f92cb8e: Pushed + 1f15df2ada16: Pushed + b59628a00a3f: Waiting + b59628a00a3f: Waiting + eaa75e6244ab: Pushed + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Waiting + b59628a00a3f: Pushed + aafc33d0a31e: Pushed + 68abe8aaf35a: Pushed + 5114c86b7dba: Pushed + 302e3ee49805: Pushed + azd-deploy-1728949373: digest: sha256:19088082558195b4e75201b32f5496845e02ada318bd12691b19af5b05076eb4 size: 856 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 0ce5496a365..36a35ccbe64 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,9 +22,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -44,7 +44,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:26 GMT + - Mon, 14 Oct 2024 23:43:13 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - d8767f44-7757-4f05-a0a4-6d8d083815b6 + - 5a5d5be4-6e26-4ee5-b5ca-982814b74673 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020126Z:d8767f44-7757-4f05-a0a4-6d8d083815b6 + - WESTUS2:20241014T234313Z:5a5d5be4-6e26-4ee5-b5ca-982814b74673 X-Msedge-Ref: - - 'Ref A: 4D152407B12F43B48D867F21ABD9343F Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:23Z' + - 'Ref A: A3843B70435A40A49F36B432A6A5A1E6 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:10Z' status: 200 OK code: 200 - duration: 2.8189855s + duration: 3.4686281s - id: 1 request: proto: HTTP/1.1 @@ -89,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w962778%27&api-version=2021-04-01 + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wddd0c3%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -111,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:26 GMT + - Mon, 14 Oct 2024 23:43:13 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a78f3aef-b532-4614-bb1b-2e778a33eab1 + - 18c9c89d-adfc-477c-b787-142861785420 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020126Z:a78f3aef-b532-4614-bb1b-2e778a33eab1 + - WESTUS2:20241014T234313Z:18c9c89d-adfc-477c-b787-142861785420 X-Msedge-Ref: - - 'Ref A: FE70D1A436454DE0819DF79B5DE8013C Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:26Z' + - 'Ref A: 33DA8F26CE9D40F9B7E7CB51E400D086 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:13Z' status: 200 OK code: 200 - duration: 98.7209ms + duration: 51.6297ms - id: 2 request: proto: HTTP/1.1 @@ -156,9 +160,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 method: GET response: @@ -167,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44800 + content_length: 37488 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/dealmaha-test","name":"dealmaha-test","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"08/25/2024 04:15:42"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/savaity-north","name":"savaity-north","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"DeleteAfter":"08/25/2024 04:15:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/zed5311dwmin001-rg","name":"zed5311dwmin001-rg","type":"Microsoft.Resources/resourceGroups","location":"uksouth","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed5311-databricks.workspaces-dwmin-rg/providers/Microsoft.Databricks/workspaces/zed5311dwmin001","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/vision-test-rg","name":"vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"azd-env-name":"vision-test","DeleteAfter":"08/10/2024 23:21:29"},"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/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-shrejasearchtest","name":"rg-shrejasearchtest","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Owners":"shreja","DeleteAfter":"2025-10-23T04:00:14.3477795Z","ServiceDirectory":"search"},"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/rg-rohitgangulysearch-demo","name":"rg-rohitgangulysearch-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"rohitgangulysearch-demo","Owner":"rohitganguly","DoNotDelete":"AI Chat Protocol Demo"},"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/rg-wabrez-remote-state","name":"rg-wabrez-remote-state","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"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/rg-ripark","name":"rg-ripark","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test","DeleteAfter":"08/29/2024 00:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pinecone-rag-wb-pc","name":"rg-pinecone-rag-wb-pc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-pc","DeleteAfter":"07/27/2024 23:20:32"},"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/chenximgmt","name":"chenximgmt","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"2023-07-28T04:00:14.3477795Z (v-chenjiang@microsoft.com)"},"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/NI_sjlnetwork1109_eastus","name":"NI_sjlnetwork1109_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.DevCenter/networkconnections/sjlnetwork1109","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_sjlnt1109_eastus","name":"NI_sjlnt1109_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.DevCenter/networkconnections/sjlnt1109","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02","name":"v-tongMonthlyReleaseTest02","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"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/rg-joncardekeyvault","name":"rg-joncardekeyvault","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"joncarde","DeleteAfter":"2024-08-26T17:43:42.8565792Z","ServiceDirectory":"keyvault"},"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/rg-annelokeyvault","name":"rg-annelokeyvault","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"annelo","DeleteAfter":"2024-08-26T00:10:41.1972337+00:00","ServiceDirectory":"keyvault"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-2895fd4cfebebb14","name":"rg-2895fd4cfebebb14","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","DeleteAfter":"2024-08-24T18:48:17.8123235Z","Owners":"ripark"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-harshanzen","name":"rg-harshanzen","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","DeleteAfter":"2024-08-24T22:51:12.6923192Z","ServiceDirectory":"documentintelligence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-7853737b85f7dd7a","name":"rg-7853737b85f7dd7a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2024-08-25T02:15:34.5428800Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chrissconfidentialledger","name":"rg-chrissconfidentialledger","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"confidentialledger","DeleteAfter":"2024-08-25T19:53:48.2542365Z","Owners":"chriss"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/danielgetu-test","name":"danielgetu-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"08/30/2024 23:27:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-krpratictranslation","name":"rg-krpratictranslation","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"krpratic","ServiceDirectory":"translation","DeleteAfter":"2024-08-25T23:12:10.9978530Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T18:22:47.5322959Z","Owners":"llawrence","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-juanospinaappconfiguration","name":"rg-juanospinaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"appconfiguration","DeleteAfter":"2024-08-31T20:24:52.8168871+00:00","Owners":"juanospina"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azusertables","name":"rg-azusertables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T20:25:24.3843303Z","ServiceDirectory":"tables","Owners":"azuser"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacestorage","name":"rg-codespacestorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","DeleteAfter":"2024-08-26T21:48:36.5106230Z","Owners":"codespace"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacecognitivelanguage","name":"rg-codespacecognitivelanguage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T22:37:33.2616008Z","Owners":"codespace","ServiceDirectory":"cognitivelanguage"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacetextanalytics","name":"rg-codespacetextanalytics","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","ServiceDirectory":"textanalytics","DeleteAfter":"2024-08-26T22:41:50.9973742Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespaceweb-pubsub","name":"rg-codespaceweb-pubsub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T22:51:00.6332128Z","ServiceDirectory":"web-pubsub","Owners":"codespace"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T23:50:04.6609363Z","Owners":"llawrence","ServiceDirectory":"eventhub"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacemonitor","name":"rg-codespacemonitor","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"monitor","Owners":"codespace","DeleteAfter":"2024-08-27T00:40:13.2038387Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespaceappconfiguration","name":"rg-codespaceappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","DeleteAfter":"2024-08-27T04:29:31.0923565Z","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacecommunication","name":"rg-codespacecommunication","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"communication","Owners":"codespace","DeleteAfter":"2024-08-27T05:23:51.8901934Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-yallappconfigtests","name":"rg-yallappconfigtests","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"yall","ServiceDirectory":"appconfiguration","DeleteAfter":"2024-08-27T05:48:49.5742829Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacedocumentintelligence","name":"rg-codespacedocumentintelligence","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-27T15:18:47.0751751Z","Owners":"codespace","ServiceDirectory":"documentintelligence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacecontainerregistry","name":"rg-codespacecontainerregistry","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","DeleteAfter":"2024-08-28T01:52:29.1255583Z","ServiceDirectory":"containerregistry"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacetranslation","name":"rg-codespacetranslation","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-28T01:31:15.9240374Z","Owners":"codespace","ServiceDirectory":"translation"},"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/maorleger-mi","name":"maorleger-mi","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_maorleger-mi_maorleger-mi_westus2","name":"MC_maorleger-mi_maorleger-mi_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/Microsoft.ContainerService/managedClusters/maorleger-mi","tags":{"aks-managed-cluster-name":"maorleger-mi","aks-managed-cluster-rg":"maorleger-mi"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MA_defaultazuremonitorworkspace-wus2_westus2_managed","name":"MA_defaultazuremonitorworkspace-wus2_westus2_managed","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/microsoft.monitor/accounts/defaultazuremonitorworkspace-wus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mharder-log-analytics-2","name":"mharder-log-analytics-2","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 23:27:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mcpatino","name":"rg-mcpatino","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/27/2024 04:59:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-queue-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-queue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildId":"","DeleteAfter":"2024-08-26T16:17:18.3369456Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-abatch-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-abatch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2024-08-26T16:17:19.0008679Z","BuildJob":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-amemray-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-amemray-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","DeleteAfter":"2024-08-26T16:17:19.3619734Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-aqueue-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-aqueue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","DeleteAfter":"2024-08-26T16:17:18.8778033Z","ServiceDirectory":"/azure/","BuildNumber":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-batch-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-batch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildId":"","DeleteAfter":"2024-08-26T16:17:20.0104050Z","Owners":"","BuildJob":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-queuepull-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-queuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","DeleteAfter":"2024-08-26T16:17:20.0378449Z","BuildJob":"","BuildId":"","BuildNumber":"","Owners":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-batchw-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-batchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2024-08-26T16:17:20.7933184Z","BuildJob":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-aqueuepull-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-aqueuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2024-08-26T16:17:21.8375836Z","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-queuew-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-queuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","Owners":"","DeleteAfter":"2024-08-26T16:17:21.7910031Z","BuildReason":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test","name":"rg-weilim-test","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-test","DeleteAfter":"08/30/2024 08:26:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova-rg","name":"limolkova-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/31/2024 03:29:18"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ripark-sberr-go18-finitesendandreceive-gosb-3","name":"ripark-sberr-go18-finitesendandreceive-gosb-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildNumber":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","DeleteAfter":"2024-08-28T02:38:15.6209990Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ripark-sberr-go18-emptysessions-gosb-3","name":"ripark-sberr-go18-emptysessions-gosb-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2024-08-28T02:38:16.1870724Z","BuildJob":"","BuildReason":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg71585","name":"javacsmrg71585","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 09:00:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg90207","name":"javacsmrg90207","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 09:00:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-billwertacr","name":"rg-billwertacr","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 23:26:51"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg73264","name":"javacsmrg73264","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg34126","name":"javacsmrg34126","type":"Microsoft.Resources/resourceGroups","location":"westus2","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/rg-rohitganguly-docs-analysis","name":"rg-rohitganguly-docs-analysis","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":"Spring Grove Analysis"},"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/jinlongshiAZD","name":"jinlongshiAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-pycon-demo","name":"rohitganguly-pycon-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-nodejs-1","name":"rg-hemarina-nodejs-1","type":"Microsoft.Resources/resourceGroups","location":"australiasoutheast","tags":{"azd-env-name":"hemarina-nodejs-1","DeleteAfter":"09/01/2024 19:23:30"},"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/jsquire-labeler","name":"jsquire-labeler","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"","owner":"Jesse Squire","purpose":"Spring Grove testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/annelo-appconfig-01","name":"annelo-appconfig-01","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/25/2024 16:27:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-scaddie","name":"rg-scaddie","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/25/2024 23:18:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-sb-cores","name":"anuchan-sb-cores","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/29/2024 23:23:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-eventgrid","name":"llawrence-eventgrid","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/29/2024 23:23:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sanallur-rg","name":"sanallur-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/30/2024 08:26:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-rg1-aks1","name":"anuchan-rg1-aks1","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/30/2024 19:19:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test1","name":"rg-hemarina-test1","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/30/2024 23:27:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pinecone-asst-dev","name":"rg-pinecone-asst-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"project":"pinecone-assistant-azd","environment":"dev","createdBy":"automation","DeleteAfter":"08/23/2024 11:21:05"},"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-vivazqu-newasp","name":"rg-vivazqu-newasp","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-newasp","DeleteAfter":"08/29/2024 11:27:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-lastapi","name":"rg-vivazqu-lastapi","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-lastapi","DeleteAfter":"08/29/2024 11:27:45"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-0802-api","name":"rg-vivazqu-0802-api","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-0802-api","DeleteAfter":"08/29/2024 11:27:46"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_anuchan-rg1-aks1_anuchan-akscluster_eastus2","name":"MC_anuchan-rg1-aks1_anuchan-akscluster_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/anuchan-rg1-aks1/providers/Microsoft.ContainerService/managedClusters/anuchan-akscluster","tags":{"aks-managed-cluster-name":"anuchan-akscluster","aks-managed-cluster-rg":"anuchan-rg1-aks1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/alzimmer-rg","name":"alzimmer-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"08/30/2024 23:27:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-aistudio-starter","name":"rg-wabrez-aistudio-starter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-aistudio-starter","DeleteAfter":"08/31/2024 19:19:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-app-ps6bgg3amzkto","name":"rg-wabrez-std-app-ps6bgg3amzkto","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-std","DeleteAfter":"09/01/2024 04:05:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-net-ps6bgg3amzkto","name":"rg-wabrez-std-net-ps6bgg3amzkto","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-std","DeleteAfter":"09/01/2024 04:05:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-env-ps6bgg3amzkto","name":"rg-wabrez-std-env-ps6bgg3amzkto","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-std","DeleteAfter":"09/01/2024 04:05:56"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ME_cae-ps6bgg3amzkto_rg-wabrez-std-env-ps6bgg3amzkto_eastus2","name":"ME_cae-ps6bgg3amzkto_rg-wabrez-std-env-ps6bgg3amzkto_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-wabrez-std-env-ps6bgg3amzkto/providers/microsoft.app/managedenvironments/cae-ps6bgg3amzkto","tags":{"aca-managed-env-id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-env-ps6bgg3amzkto/providers/Microsoft.App/managedEnvironments/cae-ps6bgg3amzkto"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-net-2acu6gpfwot3u","name":"rg-wabrez-stacks-poc-net-2acu6gpfwot3u","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-stacks-poc","DeleteAfter":"09/01/2024 04:05:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-app-2acu6gpfwot3u","name":"rg-wabrez-stacks-poc-app-2acu6gpfwot3u","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-stacks-poc","DeleteAfter":"09/01/2024 04:05:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-env-2acu6gpfwot3u","name":"rg-wabrez-stacks-poc-env-2acu6gpfwot3u","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-stacks-poc","DeleteAfter":"09/01/2024 04:06:00"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ME_cae-2acu6gpfwot3u_rg-wabrez-stacks-poc-env-2acu6gpfwot3u_eastus2","name":"ME_cae-2acu6gpfwot3u_rg-wabrez-stacks-poc-env-2acu6gpfwot3u_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-wabrez-stacks-poc-env-2acu6gpfwot3u/providers/microsoft.app/managedenvironments/cae-2acu6gpfwot3u","tags":{"aca-managed-env-id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-env-2acu6gpfwot3u/providers/Microsoft.App/managedEnvironments/cae-2acu6gpfwot3u"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-oioioio","name":"rg-oioioio","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"oioioio","DeleteAfter":"08/23/2024 04:05:53"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chatapp822-rg","name":"chatapp822-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chatapp822","DeleteAfter":"08/23/2024 23:26:52"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9dc043","name":"rg-azdtest-w9dc043","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-08-23T01:47:50Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"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/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/zed5311dwmin001-rg","name":"zed5311dwmin001-rg","type":"Microsoft.Resources/resourceGroups","location":"uksouth","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed5311-databricks.workspaces-dwmin-rg/providers/Microsoft.Databricks/workspaces/zed5311dwmin001","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/vision-test-rg","name":"vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"azd-env-name":"vision-test","DeleteAfter":"08/10/2024 23:21:29"},"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/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":"Deleting"}},{"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/rg-pinecone-rag-wb-pc","name":"rg-pinecone-rag-wb-pc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-pc","DeleteAfter":"07/27/2024 23:20:32"},"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/v-tongMonthlyReleaseTest02","name":"v-tongMonthlyReleaseTest02","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"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/rg-creative-writer-dev","name":"rg-creative-writer-dev","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{"azd-env-name":"creative-writer-dev","DeleteAfter":"10/15/2024 20:20:34"},"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/annelo-azure-openai-rg","name":"annelo-azure-openai-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"09/29/2024 18:49:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nibhatimonitor","name":"rg-nibhatimonitor","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-21T21:43:31.0109728+00:00","Owners":"nibhati","ServiceDirectory":"monitor"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-15T21:52:05.3931246Z","Owners":"llawrence","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventhubs","Owners":"larryo","DeleteAfter":"2024-10-19T21:56:41.6731478Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-vw","name":"anuchan-vw","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"10/21/2024 19:20:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-9a7de3a313caae8c","name":"rg-9a7de3a313caae8c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2024-10-17T00:57:10.8765580Z","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv82897c8","name":"rgcomv82897c8","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"10/15/2024 07:14:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-19T16:31:30.4051359Z","Owners":"llawrence","ServiceDirectory":"eventhub"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-schemaregmap","name":"rg-schemaregmap","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","ServiceDirectory":"schemaregistry","DeleteAfter":"2024-10-19T17:34:07.3016394Z"},"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","DeleteAfter":"2024-11-19T19:02:52.9728562Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2024-11-19T21:32:52.6907040Z","ServiceDirectory":"messaging/azservicebus"},"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/maorleger-mi","name":"maorleger-mi","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_maorleger-mi_maorleger-mi_westus2","name":"MC_maorleger-mi_maorleger-mi_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/Microsoft.ContainerService/managedClusters/maorleger-mi","tags":{"aks-managed-cluster-name":"maorleger-mi","aks-managed-cluster-rg":"maorleger-mi"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MA_defaultazuremonitorworkspace-wus2_westus2_managed","name":"MA_defaultazuremonitorworkspace-wus2_westus2_managed","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/microsoft.monitor/accounts/defaultazuremonitorworkspace-wus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cobey-aitk-test","name":"cobey-aitk-test","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/18/2024 00:29:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-ai","name":"rg-weilim-ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"tags":"working","DeleteAfter":"10/21/2024 23:15:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg51944","name":"javacsmrg51944","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 03:13:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg72693","name":"javacsmrg72693","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg45615","name":"javacsmrg45615","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg70899","name":"javacsmrg70899","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv56676d9","name":"rgcomv56676d9","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv507257e","name":"rgcomv507257e","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv25092df","name":"rgcomv25092df","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv891957d","name":"rgcomv891957d","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv35157c4","name":"rgcomv35157c4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv3360256","name":"rgcomv3360256","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv4247092","name":"rgcomv4247092","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv595754b","name":"rgcomv595754b","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antischujqnqlqjzs4go","name":"antischujqnqlqjzs4go","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"cloudmachine-restaurantreviewapp-local","abc":"def","cloudmachine-friendlyname":"restaurantreviewapp","DeleteAfter":"10/15/2024 20:20:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre11-vertx-async-get-java-azure-core-http-1","name":"jairmyree-jre11-vertx-async-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","DeleteAfter":"2024-10-21T20:42:24.0563192Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre21-vertx-sync-get-java-azure-core-http-1","name":"jairmyree-jre21-vertx-sync-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildJob":"","Owners":"","DeleteAfter":"2024-10-21T20:42:24.5822954Z","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre11-vertx-sync-get-java-azure-core-http-1","name":"jairmyree-jre11-vertx-sync-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2024-10-21T20:45:25.9420842Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","BuildId":""},"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/jinlongshiAZD","name":"jinlongshiAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-pycon-demo","name":"rohitganguly-pycon-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":""},"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-kashifkhan","name":"rg-kashifkhan","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"10/18/2024 00:29:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-labeler","name":"jsquire-labeler","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"","owner":"Jesse Squire","purpose":"Spring Grove testing"},"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/test-ai-toolkit-rg","name":"test-ai-toolkit-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-ai-toolkit","DeleteAfter":"08/30/2024 16:32:58"},"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/vision-dev-rg","name":"vision-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev","DeleteAfter":"09/05/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-dev-test-rg","name":"vision-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev-test","DeleteAfter":"09/05/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-chat-test-rg","name":"vision-chat-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-chat-test","DeleteAfter":"09/06/2024 07:22:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-rg","name":"chat-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev","DeleteAfter":"09/06/2024 07:22:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ai-chat-vision-test-rg","name":"ai-chat-vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ai-chat-vision-test","DeleteAfter":"09/06/2024 07:22:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-test-rg","name":"chat-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev-test","DeleteAfter":"09/06/2024 07:22:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gracekulin-vision2-rg","name":"gracekulin-vision2-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"gracekulin-vision2","DeleteAfter":"09/29/2024 16:31:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-rg","name":"vision-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision","DeleteAfter":"09/20/2024 18:49:42"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-extensions","name":"rg-wabrez-extensions","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca","name":"rg-wabrez-todo-aca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/24/2024 23:23:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-asd23lllk","name":"rg-test-tc-asd23lllk","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:55"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-asd123","name":"rg-test-tc-asd123","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:36"},"properties":{"provisioningState":"Deleting"}},{"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":"Deleting"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-adjklp898","name":"rg-test-tc-adjklp898","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 03:21:44"},"properties":{"provisioningState":"Deleting"}},{"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":"Deleting"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez_ai","name":"rg-wabrez_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/21/2024 03:20:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkovaai","name":"rg-limolkovaai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/13/2024 07:20:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihuasample","name":"rg-shihuasample","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihuasample","DeleteAfter":"10/15/2024 07:14:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhss","name":"rg-mhss","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mhss","DeleteAfter":"10/15/2024 11:15:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh15","name":"rg-mh15","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mh15","DeleteAfter":"10/15/2024 11:15:51"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-writer-dev","name":"rg-contoso-writer-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"contoso-writer-dev","DeleteAfter":"10/15/2024 20:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-appicbjybzfq3rra-rg","name":"chat-appicbjybzfq3rra-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-app","DeleteAfter":"10/15/2024 20:20:38"},"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":{"DeleteAfter":"10/24/2024 20:20:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w797be2","name":"rg-azdtest-w797be2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-10-15T00:00:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w13c21d","name":"rg-azdtest-w13c21d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w13c21d","DeleteAfter":"2024-10-15T00:00:56Z"},"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/rg-nlkm-pe-mng","name":"rg-nlkm-pe-mng","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-ip60-pe-umg","name":"rg-ip60-pe-umg","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"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-vgx0","name":"rg-vgx0","type":"Microsoft.Resources/resourceGroups","location":"israelcentral","tags":{"DeleteAfter":"10/15/2024 11:15:52"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/20/2024 07:21:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg8059547b","name":"rg8059547b","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 03:13:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg76794b","name":"rg76794b","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 03:13:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-gzrr","name":"rg-gzrr","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 07:14:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"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"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "44800" + - "37488" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:26 GMT + - Mon, 14 Oct 2024 23:43:13 GMT Expires: - "-1" Pragma: @@ -190,18 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7a39384f-f9cf-4850-8fdf-fee413d21e0f + - 9c2de649-c7fd-4d8d-9e86-1cd7345ab352 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020126Z:7a39384f-f9cf-4850-8fdf-fee413d21e0f + - WESTUS2:20241014T234313Z:9c2de649-c7fd-4d8d-9e86-1cd7345ab352 X-Msedge-Ref: - - 'Ref A: 20DA1C8D73894922BF010B0C60F6C2C9 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:26Z' + - 'Ref A: 71888482C9374CD09764987CEF958979 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:13Z' status: 200 OK code: 200 - duration: 70.3858ms + duration: 55.1149ms - id: 3 request: proto: HTTP/1.1 @@ -223,9 +229,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -234,18 +240,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2134656 + content_length: 2183178 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=zdHNUoMwEAfwZ2nOZYZA23F6Mwa06C5NSOLgrVORATLgKJ1iOn13abUvYC%2fe9uN%2f%2be0eyLZr%2b6rdbfqqa1XXFO0nWR5IdJspnZ2qthj69eajr06Bx%2bKLLAmd3ExQ5QO43CPTc0J2%2b8uOhouJbGIGvNwL%2fcJBixlyxiS3XPgmBh35qBgXytyhen2TFNOnzN%2bnXI%2b5bYg8D5BrinU5YA0hVjSShoGi9kEamUmDa2MSPs4yRVmsrUykgQU0MhU2D4VbORPFGvx3Ro7TX0rwR0twvUVpOl7KjZYBKiqUPySC2osJpZ7rtDb3qSoDdKs5cKApz31wpQPXzLD0vJPjObriJf%2bNMb6j3Vl7UYU%2f7fH4DQ%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2134656" + - "2183178" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:33 GMT + - Mon, 14 Oct 2024 23:43:20 GMT Expires: - "-1" Pragma: @@ -257,18 +263,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 7e70170d-3685-480c-832f-26255c0cb138 + - a574daba-99d0-4277-b79d-1a77755d1dac X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020133Z:7e70170d-3685-480c-832f-26255c0cb138 + - WESTUS2:20241014T234320Z:a574daba-99d0-4277-b79d-1a77755d1dac X-Msedge-Ref: - - 'Ref A: B57E6783B95342828DB7ED53FC5964CB Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:26Z' + - 'Ref A: 5EAABB8C63DC46F781DCDDFE4E51D1E6 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:13Z' status: 200 OK code: 200 - duration: 7.0060745s + duration: 6.5241649s - id: 4 request: proto: HTTP/1.1 @@ -288,10 +296,77 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 867605 + 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=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "867605" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 23:43: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: + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - c89aebb0-4ed7-4561-90d2-4004ef74211e + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T234325Z:c89aebb0-4ed7-4561-90d2-4004ef74211e + X-Msedge-Ref: + - 'Ref A: B7687B9A37E9462681BC6ED99C7E609E Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:20Z' + status: 200 OK + code: 200 + duration: 5.1169166s + - id: 5 + 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zdHNUoMwEAfwZ2nOZYZA23F6Mwa06C5NSOLgrVORATLgKJ1iOn13abUvYC%2fe9uN%2f%2be0eyLZr%2b6rdbfqqa1XXFO0nWR5IdJspnZ2qthj69eajr06Bx%2bKLLAmd3ExQ5QO43CPTc0J2%2b8uOhouJbGIGvNwL%2fcJBixlyxiS3XPgmBh35qBgXytyhen2TFNOnzN%2bnXI%2b5bYg8D5BrinU5YA0hVjSShoGi9kEamUmDa2MSPs4yRVmsrUykgQU0MhU2D4VbORPFGvx3Ro7TX0rwR0twvUVpOl7KjZYBKiqUPySC2osJpZ7rtDb3qSoDdKs5cKApz31wpQPXzLD0vJPjObriJf%2bNMb6j3Vl7UYU%2f7fH4DQ%3d%3d + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -299,18 +374,85 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353776 + content_length: 582659 + 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=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "582659" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 23:43: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: + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - fd0bce3f-25dc-46c6-b82f-9e10dca3698f + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T234329Z:fd0bce3f-25dc-46c6-b82f-9e10dca3698f + X-Msedge-Ref: + - 'Ref A: FF2F9192173741D7B69AD5D5CE09A6D2 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:26Z' + status: 200 OK + code: 200 + duration: 3.2043816s + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "353776" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:35 GMT + - Mon, 14 Oct 2024 23:43:31 GMT Expires: - "-1" Pragma: @@ -322,19 +464,94 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 02373b84-2787-41eb-8c0d-5fb403f1ebe8 + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T234331Z:02373b84-2787-41eb-8c0d-5fb403f1ebe8 + X-Msedge-Ref: + - 'Ref A: 102B6B7688434CE7864469C8FE5BF55F Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:29Z' + status: 200 OK + code: 200 + duration: 2.4838447s + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 9514 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wddd0c3"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"5362782710926720725"}},"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":"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.29.47.4906","templateHash":"11220754103571024397"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":true},"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"}}}],"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]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"web","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"containerRegistryName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.containerRegistryName.value]"},"containerAppsEnvironmentName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.containerAppsEnvironmentName.value]"},"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"imageName":{"value":"nginx:latest"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"8053253046203902308"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"imageName":{"type":"string"},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-02-preview","name":"[format(''ca-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''web''))]","properties":{"managedEnvironmentId":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]","configuration":{"activeRevisionsMode":"single","ingress":{"external":true,"targetPort":3100,"transport":"auto"},"secrets":[{"name":"registry-password","value":"[listCredentials(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').passwords[0].value]"}],"registries":[{"server":"[format(''{0}.azurecr.io'', parameters(''containerRegistryName''))]","username":"[parameters(''containerRegistryName'')]","passwordSecretRef":"registry-password"}]},"template":{"containers":[{"image":"[parameters(''imageName'')]","name":"main","env":[]}]}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.App/containerApps'', format(''ca-{0}'', variables(''resourceToken''))), ''2023-05-02-preview'').configuration.ingress.fqdn)]"}}}},"dependsOn":["[extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources'')]","[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''), ''2022-09-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''), ''2022-09-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''), ''2022-09-01'').outputs.containerRegistryloginServer.value]"},"WEBSITE_URL":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''web''), ''2022-09-01'').outputs.WEBSITE_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "9514" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3143 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:33Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"29ab77f785aef174746f7248fcb67699","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-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "3143" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 23:43: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: + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 99759183-4028-416d-819d-4121b6777f70 + - 9b60cf46-7497-49bc-8973-dd88dbf7b929 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020135Z:99759183-4028-416d-819d-4121b6777f70 + - WESTUS2:20241014T234335Z:9b60cf46-7497-49bc-8973-dd88dbf7b929 X-Msedge-Ref: - - 'Ref A: 41A04A4F5C9C479780651F6EB8DE460F Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:33Z' + - 'Ref A: 816CD6842AA74A1B9FEE20823D550950 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:31Z' status: 200 OK code: 200 - duration: 1.9859267s - - id: 5 + duration: 3.6767609s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -345,7 +562,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w962778"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"5362782710926720725"}},"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":"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.29.47.4906","templateHash":"11220754103571024397"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":true},"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"}}}],"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]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"web","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"containerRegistryName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.containerRegistryName.value]"},"containerAppsEnvironmentName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.containerAppsEnvironmentName.value]"},"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"imageName":{"value":"nginx:latest"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"8053253046203902308"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"imageName":{"type":"string"},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-02-preview","name":"[format(''ca-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''web''))]","properties":{"managedEnvironmentId":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]","configuration":{"activeRevisionsMode":"single","ingress":{"external":true,"targetPort":3100,"transport":"auto"},"secrets":[{"name":"registry-password","value":"[listCredentials(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').passwords[0].value]"}],"registries":[{"server":"[format(''{0}.azurecr.io'', parameters(''containerRegistryName''))]","username":"[parameters(''containerRegistryName'')]","passwordSecretRef":"registry-password"}]},"template":{"containers":[{"image":"[parameters(''imageName'')]","name":"main","env":[]}]}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.App/containerApps'', format(''ca-{0}'', variables(''resourceToken''))), ''2023-05-02-preview'').configuration.ingress.fqdn)]"}}}},"dependsOn":["[extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources'')]","[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''), ''2022-09-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''), ''2022-09-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''), ''2022-09-01'').outputs.containerRegistryloginServer.value]"},"WEBSITE_URL":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''web''), ''2022-09-01'').outputs.WEBSITE_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wddd0c3"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"5362782710926720725"}},"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":"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.29.47.4906","templateHash":"11220754103571024397"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"adminUserEnabled":{"type":"bool","defaultValue":true},"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"}}}],"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]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"web","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"containerRegistryName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.containerRegistryName.value]"},"containerAppsEnvironmentName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.containerAppsEnvironmentName.value]"},"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"},"imageName":{"value":"nginx:latest"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"8053253046203902308"}},"parameters":{"environmentName":{"type":"string"},"location":{"type":"string","defaultValue":"[resourceGroup().location]"},"imageName":{"type":"string"},"containerRegistryName":{"type":"string"},"containerAppsEnvironmentName":{"type":"string"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"resourceToken":"[toLower(uniqueString(subscription().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.App/containerApps","apiVersion":"2023-05-02-preview","name":"[format(''ca-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[union(variables(''tags''), createObject(''azd-service-name'', ''web''))]","properties":{"managedEnvironmentId":"[resourceId(''Microsoft.App/managedEnvironments'', parameters(''containerAppsEnvironmentName''))]","configuration":{"activeRevisionsMode":"single","ingress":{"external":true,"targetPort":3100,"transport":"auto"},"secrets":[{"name":"registry-password","value":"[listCredentials(resourceId(''Microsoft.ContainerRegistry/registries'', parameters(''containerRegistryName'')), ''2023-01-01-preview'').passwords[0].value]"}],"registries":[{"server":"[format(''{0}.azurecr.io'', parameters(''containerRegistryName''))]","username":"[parameters(''containerRegistryName'')]","passwordSecretRef":"registry-password"}]},"template":{"containers":[{"image":"[parameters(''imageName'')]","name":"main","env":[]}]}}}],"outputs":{"WEBSITE_URL":{"type":"string","value":"[format(''https://{0}'', reference(resourceId(''Microsoft.App/containerApps'', format(''ca-{0}'', variables(''resourceToken''))), ''2023-05-02-preview'').configuration.ingress.fqdn)]"}}}},"dependsOn":["[extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources'')]","[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''), ''2022-09-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''), ''2022-09-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''), ''2022-09-01'').outputs.containerRegistryloginServer.value]"},"WEBSITE_URL":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''web''), ''2022-09-01'').outputs.WEBSITE_URL.value]"}}}},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"}}' form: {} headers: Accept: @@ -359,10 +576,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -370,20 +587,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 2271 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w962778"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:01:36Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T02:01:38.2759297Z","duration":"PT0.000582S","correlationId":"cae59d248bac9c54b6bbaa7a290662c9","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-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:35Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-14T23:43:38.5069809Z","duration":"PT0.0006741S","correlationId":"29ab77f785aef174746f7248fcb67699","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-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473/operationStatuses/08584772283890636063?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373/operationStatuses/08584726574693745002?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "2270" + - "2271" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:38 GMT + - Mon, 14 Oct 2024 23:43:39 GMT Expires: - "-1" Pragma: @@ -395,21 +612,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 364d1b7b-a732-49ce-980d-d88fc6d2dd42 + - 0b6a135b-cf7f-41c9-a1c1-9e597e66521a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020139Z:364d1b7b-a732-49ce-980d-d88fc6d2dd42 + - WESTUS2:20241014T234339Z:0b6a135b-cf7f-41c9-a1c1-9e597e66521a X-Msedge-Ref: - - 'Ref A: 4A3A537F26224E399C02C00AC8530322 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:36Z' + - 'Ref A: 3F76C1C0095746F2B8DCA1134CA2B24D Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:43:35Z' status: 201 Created code: 201 - duration: 3.2924228s - - id: 6 + duration: 4.0957713s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -428,10 +647,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473/operationStatuses/08584772283890636063?api-version=2021-04-01 + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373/operationStatuses/08584726574693745002?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -450,7 +669,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:40 GMT + - Mon, 14 Oct 2024 23:45:40 GMT Expires: - "-1" Pragma: @@ -462,19 +681,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 4a2022e2-09f0-4f0d-b5b8-74c6482e955b + - c338868e-3668-4f51-91bc-157afe52dc4d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020341Z:4a2022e2-09f0-4f0d-b5b8-74c6482e955b + - WESTUS2:20241014T234540Z:c338868e-3668-4f51-91bc-157afe52dc4d X-Msedge-Ref: - - 'Ref A: EE4B95DA9C9A4859BDD41F8B974ABB85 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:40Z' + - 'Ref A: EE4FBA1FD961490295095B98F5273B41 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:45:40Z' status: 200 OK code: 200 - duration: 214.339ms - - id: 7 + duration: 206.7758ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -493,10 +714,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -504,18 +725,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3399 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w962778"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:01:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:03:17.9416153Z","duration":"PT1M39.6662676S","correlationId":"cae59d248bac9c54b6bbaa7a290662c9","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-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crsf5eumltrz36q"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-sf5eumltrz36q"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crsf5eumltrz36q.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T23:45:17.0605676Z","duration":"PT1M38.5542608S","correlationId":"29ab77f785aef174746f7248fcb67699","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-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crgh7yf7apixojm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-gh7yf7apixojm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crgh7yf7apixojm.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3399" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:40 GMT + - Mon, 14 Oct 2024 23:45:41 GMT Expires: - "-1" Pragma: @@ -527,19 +748,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 3630018f-e646-4862-a142-555294146883 + - 14ba8e58-ea7d-42d7-adb2-7e931029f4f5 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020341Z:3630018f-e646-4862-a142-555294146883 + - WESTUS2:20241014T234541Z:14ba8e58-ea7d-42d7-adb2-7e931029f4f5 X-Msedge-Ref: - - 'Ref A: 3F38230DFA2E4A30951255A052913A9B Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:41Z' + - 'Ref A: 7970A81B262E4A0A8E6CE5A40760D90E Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:45:41Z' status: 200 OK code: 200 - duration: 369.801ms - - id: 8 + duration: 539.6517ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -560,10 +783,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w962778%27&api-version=2021-04-01 + - 29ab77f785aef174746f7248fcb67699 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wddd0c3%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -573,7 +796,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","name":"rg-azdtest-w962778","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","DeleteAfter":"2024-08-23T03:01:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","name":"rg-azdtest-wddd0c3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","DeleteAfter":"2024-10-15T00:43:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -582,7 +805,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:42 GMT + - Mon, 14 Oct 2024 23:45:43 GMT Expires: - "-1" Pragma: @@ -594,19 +817,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - 29ab77f785aef174746f7248fcb67699 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - f06702e0-99c9-49e4-bd56-bb7de108d037 + - 7986a275-9a4a-4f06-b8e7-216dba472007 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020343Z:f06702e0-99c9-49e4-bd56-bb7de108d037 + - WESTUS2:20241014T234544Z:7986a275-9a4a-4f06-b8e7-216dba472007 X-Msedge-Ref: - - 'Ref A: CDD80173A84C425EAFCB48CE66056347 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:42Z' + - 'Ref A: 26B5C4435CA44F81B59B3D58C5305792 Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:45:44Z' status: 200 OK code: 200 - duration: 54.29ms - - id: 9 + duration: 241.3534ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -627,10 +852,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w962778%27&api-version=2021-04-01 + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wddd0c3%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -640,7 +865,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","name":"rg-azdtest-w962778","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","DeleteAfter":"2024-08-23T03:01:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","name":"rg-azdtest-wddd0c3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","DeleteAfter":"2024-10-15T00:43:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -649,7 +874,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:48 GMT + - Mon, 14 Oct 2024 23:45:57 GMT Expires: - "-1" Pragma: @@ -661,19 +886,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a323955e-3dca-492f-8ffb-a226b7cffff5 + - 2dccdc89-6063-4254-9f1d-c3d63f25f747 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020348Z:a323955e-3dca-492f-8ffb-a226b7cffff5 + - WESTUS2:20241014T234558Z:2dccdc89-6063-4254-9f1d-c3d63f25f747 X-Msedge-Ref: - - 'Ref A: 862CB0124E114754BAD10D65D7A6B09D Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:48Z' + - 'Ref A: F7FFC36E44C3478787799468F01B274F Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:45:58Z' status: 200 OK code: 200 - duration: 63.3009ms - - id: 10 + duration: 61.6541ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -694,10 +921,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27web%27&api-version=2021-04-01 + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/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 @@ -707,7 +934,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q","name":"ca-sf5eumltrz36q","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"None"},"tags":{"azd-service-name":"web","azd-env-name":"azdtest-w962778"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm","name":"ca-gh7yf7apixojm","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"}}]}' headers: Cache-Control: - no-cache @@ -716,7 +943,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:48 GMT + - Mon, 14 Oct 2024 23:45:58 GMT Expires: - "-1" Pragma: @@ -728,19 +955,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 1fafd18b-63af-4260-80de-06d20c85b9a1 + - a1ff79ee-b805-439d-b471-cb944bb92884 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020349Z:1fafd18b-63af-4260-80de-06d20c85b9a1 + - WESTUS2:20241014T234558Z:a1ff79ee-b805-439d-b471-cb944bb92884 X-Msedge-Ref: - - 'Ref A: B9BF3747ADCE430DBDA521B49CC85E93 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:48Z' + - 'Ref A: CF2DDE8D9EA240A693F5C54F301FA6BD Ref B: CO6AA3150220023 Ref C: 2024-10-14T23:45:58Z' status: 200 OK code: 200 - duration: 669.7682ms - - id: 11 + duration: 339.1941ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -749,17 +978,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: crsf5eumltrz36q.azurecr.io + host: crgh7yf7apixojm.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=crsf5eumltrz36q.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=crgh7yf7apixojm.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - crsf5eumltrz36q.azurecr.io + - crgh7yf7apixojm.azurecr.io headers: Accept-Encoding: - gzip @@ -768,10 +997,10 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://crsf5eumltrz36q.azurecr.io:443/oauth2/exchange + - 8f80bd3b167e2344558ba668510b4efa + url: https://crgh7yf7apixojm.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -789,19 +1018,19 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:50 GMT + - Mon, 14 Oct 2024 23:46:00 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa X-Ms-Ratelimit-Remaining-Calls-Per-Second: - "166.65" status: 200 OK code: 200 - duration: 541.9201ms - - id: 12 + duration: 793.1514ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -822,10 +1051,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q?api-version=2023-11-02-preview + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -833,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2544 + content_length: 2551 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerapps/ca-sf5eumltrz36q","name":"ca-sf5eumltrz36q","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w962778","azd-service-name":"web"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:47.1632493","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:02:47.1632493"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","workloadProfileName":null,"outboundIpAddresses":["4.152.187.211"],"latestRevisionName":"ca-sf5eumltrz36q--lxk2m3x","latestReadyRevisionName":"ca-sf5eumltrz36q--lxk2m3x","latestRevisionFqdn":"ca-sf5eumltrz36q--lxk2m3x.greenstone-0ed91530.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io","external":true,"targetPort":3100,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"crsf5eumltrz36q.azurecr.io","username":"crsf5eumltrz36q","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"nginx:latest","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/containerApps/ca-sf5eumltrz36q/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerapps/ca-gh7yf7apixojm","name":"ca-gh7yf7apixojm","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:52.5870608","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:44:52.5870608"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","workloadProfileName":null,"outboundIpAddresses":["48.211.134.131"],"latestRevisionName":"ca-gh7yf7apixojm--l6hveka","latestReadyRevisionName":"ca-gh7yf7apixojm--l6hveka","latestRevisionFqdn":"ca-gh7yf7apixojm--l6hveka.wittyground-db0d30aa.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io","external":true,"targetPort":3100,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"crgh7yf7apixojm.azurecr.io","username":"crgh7yf7apixojm","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"nginx:latest","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/containerApps/ca-gh7yf7apixojm/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' 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 Cache-Control: - no-cache Content-Length: - - "2544" + - "2551" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:35 GMT + - Mon, 14 Oct 2024 23:59:35 GMT Expires: - "-1" Pragma: @@ -860,21 +1089,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - fd5543ec-9e0e-4628-9399-beca8b8a4566 + - bc29687f-ee20-4523-80f7-da3d34a68533 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020436Z:fd5543ec-9e0e-4628-9399-beca8b8a4566 + - WESTUS2:20241014T235935Z:bc29687f-ee20-4523-80f7-da3d34a68533 X-Msedge-Ref: - - 'Ref A: 81E825F8ADD74A62AC715EC8BBF17FD7 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:35Z' + - 'Ref A: 5798ABAFAF1648AC979DC9ECE04EF1D3 Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:34Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 686.3932ms - - id: 13 + duration: 1.2513032s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -895,10 +1126,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q/revisions/ca-sf5eumltrz36q--lxk2m3x?api-version=2023-11-02-preview + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm/revisions/ca-gh7yf7apixojm--l6hveka?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -906,20 +1137,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 916 + content_length: 923 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q/revisions/ca-sf5eumltrz36q--lxk2m3x","name":"ca-sf5eumltrz36q--lxk2m3x","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2024-08-23T02:02:54+00:00","fqdn":"ca-sf5eumltrz36q--lxk2m3x.greenstone-0ed91530.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"nginx:latest","name":"main","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating","runningStateDetails":"The TargetPort 3100 does not match the listening port 80."}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm/revisions/ca-gh7yf7apixojm--l6hveka","name":"ca-gh7yf7apixojm--l6hveka","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2024-10-14T23:44:59+00:00","fqdn":"ca-gh7yf7apixojm--l6hveka.wittyground-db0d30aa.eastus2.azurecontainerapps.io","template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"nginx:latest","name":"main","resources":{"cpu":0.500,"memory":"1Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":0,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"ActivationFailed","runningStateDetails":"The TargetPort 3100 does not match the listening port 80."}}' 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 Cache-Control: - no-cache Content-Length: - - "916" + - "923" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:36 GMT + - Mon, 14 Oct 2024 23:59:36 GMT Expires: - "-1" Pragma: @@ -933,21 +1164,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 29a67455-27cd-4f1d-bfbd-1f4ba5ff506c + - 54c2195f-e3b0-49e1-a3e0-cd1a9e941598 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020437Z:29a67455-27cd-4f1d-bfbd-1f4ba5ff506c + - WESTUS2:20241014T235936Z:54c2195f-e3b0-49e1-a3e0-cd1a9e941598 X-Msedge-Ref: - - 'Ref A: A3A66CEA3A0A413E93CCD092AC124955 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:36Z' + - 'Ref A: 73BDB6CE43AE47A4AA868A82A39E6C90 Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:35Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 881.267ms - - id: 14 + duration: 1.1502423s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -970,10 +1203,10 @@ interactions: Content-Length: - "0" User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q/listSecrets?api-version=2023-11-02-preview + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm/listSecrets?api-version=2023-11-02-preview method: POST response: proto: HTTP/2.0 @@ -994,7 +1227,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:36 GMT + - Mon, 14 Oct 2024 23:59:37 GMT Expires: - "-1" Pragma: @@ -1008,32 +1241,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - bd088f52-971e-41e8-9cc9-376471f35c93 + - 648c96e8-403c-46e1-82e3-3b55732729be X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020437Z:bd088f52-971e-41e8-9cc9-376471f35c93 + - WESTUS2:20241014T235937Z:648c96e8-403c-46e1-82e3-3b55732729be X-Msedge-Ref: - - 'Ref A: 58F6485A0FFF4804B366574DFA1DCE44 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:37Z' + - 'Ref A: 5ED62FB5ED6C453B9E102552C9E38C3F Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:36Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 545.313ms - - id: 15 + duration: 683.2405ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2270 + content_length: 2277 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerapps/ca-sf5eumltrz36q","identity":{"type":"None"},"location":"East US 2","name":"ca-sf5eumltrz36q","properties":{"configuration":{"activeRevisionsMode":"Single","ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io","targetPort":3100,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Auto"},"maxInactiveRevisions":100,"registries":[{"identity":"","passwordSecretRef":"registry-password","server":"crsf5eumltrz36q.azurecr.io","username":"crsf5eumltrz36q"}],"secrets":[{"name":"registry-password","value":"SANITIZED"}]},"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/containerApps/ca-sf5eumltrz36q/eventstream","latestReadyRevisionName":"ca-sf5eumltrz36q--lxk2m3x","latestRevisionFqdn":"ca-sf5eumltrz36q--lxk2m3x.greenstone-0ed91530.eastus2.azurecontainerapps.io","latestRevisionName":"ca-sf5eumltrz36q--lxk2m3x","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","outboundIpAddresses":["4.152.187.211"],"provisioningState":"Succeeded","template":{"containers":[{"image":"crsf5eumltrz36q.azurecr.io/containerapp/web-azdtest-w962778:azd-deploy-1724378473","name":"main","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1724378473","scale":{"maxReplicas":10}}},"systemData":{"createdAt":"2024-08-23T02:02:47.1632493Z","createdBy":"wabrez@microsoft.com","createdByType":"User","lastModifiedAt":"2024-08-23T02:02:47.1632493Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-w962778","azd-service-name":"web"},"type":"Microsoft.App/containerApps"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerapps/ca-gh7yf7apixojm","identity":{"type":"None"},"location":"East US 2","name":"ca-gh7yf7apixojm","properties":{"configuration":{"activeRevisionsMode":"Single","ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io","targetPort":3100,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Auto"},"maxInactiveRevisions":100,"registries":[{"identity":"","passwordSecretRef":"registry-password","server":"crgh7yf7apixojm.azurecr.io","username":"crgh7yf7apixojm"}],"secrets":[{"name":"registry-password","value":"SANITIZED"}]},"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/containerApps/ca-gh7yf7apixojm/eventstream","latestReadyRevisionName":"ca-gh7yf7apixojm--l6hveka","latestRevisionFqdn":"ca-gh7yf7apixojm--l6hveka.wittyground-db0d30aa.eastus2.azurecontainerapps.io","latestRevisionName":"ca-gh7yf7apixojm--l6hveka","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","outboundIpAddresses":["48.211.134.131"],"provisioningState":"Succeeded","template":{"containers":[{"image":"crgh7yf7apixojm.azurecr.io/containerapp/web-azdtest-wddd0c3:azd-deploy-1728949373","name":"main","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1728949373","scale":{"maxReplicas":10}}},"systemData":{"createdAt":"2024-10-14T23:44:52.5870608Z","createdBy":"hemarina@microsoft.com","createdByType":"User","lastModifiedAt":"2024-10-14T23:44:52.5870608Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"},"type":"Microsoft.App/containerApps"}' form: {} headers: Accept: @@ -1043,14 +1278,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "2270" + - "2277" Content-Type: - application/json User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q?api-version=2023-11-02-preview + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm?api-version=2023-11-02-preview method: PATCH response: proto: HTTP/2.0 @@ -1065,17 +1300,17 @@ interactions: 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 Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/83cde298-2b1e-40e2-b334-49053f1e3049?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638599754795940789&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=dDkpf5upcIpUcXN3UXaxa3krg1vc94JqwYssIQM-8Kjt3VFzbhQMB_CLUdnnUgTnPhYDvCyyBHGNggMPSGinCXLJ7-qlEB76dZ_QFAFuz8DP-avShbOS9JlL8D8___bJ-WmKxRixQEbh6tkK0La0ks6bW-vyFD_BJieLB4MWFeFrzMRhNL2wz_m6Qx6m_VzJaUJfwslaw5lUHs0IRnE5kkAocXkDIXkm5Q9PMwCvDQiK1MpwP2FURDoE41Eiz1GuwWzfsCaQ5oVv3g9POUWCrcVH7SHsx3smaE7ZO728JQ0YS_CIovPTstm1RAF_W5__5sKVgVsIG2HRkJhwGHio7Q&h=_EBD1LMKRFS84L7u1VTJ9zF2_rzoFy-OF_SD622l5P8 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/80d012fe-32dc-4745-b6ff-544f23422a39?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638645471791305230&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=ngCO2sYFnZdvzk9NeUL1Wa2pMupMGu9n0ViQMShFAzjqYgqlsTNe8n_gJ98OxjVtW7okEfTeq4Ylx7tk8hiwZ1F1Ol81grGYmS_jdQI4GQYptLHSn701zmsUGvJ6X7MMLJJKPWxwvakdvmkP0VGZVpkdX9KO-WkEPXK-xYPmMeu7hslJCL51QZQK--GZT_aAkhH62QsifyMaADUeD1D4BvPXuzX0z2felb9lBQYselHayjln8uI461vDzbhEgK1zzrbVLR60Dkp2DgS70V9QdL-qUl3ooKR0GM12GpY44gStEeyQ4a3kNC_SQ0vwZzbGXwDeqOjwNF8pLNhzDaK5mw&h=ZhMB82_GmlZmuYngHwJVdSEhxMNBrKI7FsX1jN1RHCY Cache-Control: - no-cache Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:04:38 GMT + - Mon, 14 Oct 2024 23:59:39 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationResults/83cde298-2b1e-40e2-b334-49053f1e3049?api-version=2023-11-02-preview&t=638599754795940789&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=lMP0YvyIl8XESVTBVbuDOPS1bk65c7ai3JPpWHGrfAfoBGF011SYv9B8rs8hOVNOKnuES6xW9ZKpYGppFgvX-WsB1_VOybHdY7b-uTYxd72NZhDnb37Rn25I5HzOhww7sAWNj9JHhpAP9GH1YwePta3y5l3kqWIDd9wsDaDbBM7enJ4pBJRND55wK0JQwAQHkkWEViO8Buat6s4PBiacC5V__0qm6Y-itkjPiP1CPzvKitwK_RS1BzxcqRX-zkRSaehJYriC5EqP5bKbjVCxn9B1IU3kHlrBJoqT4Pj84N_-R4fRDBXjtusVqfheeKfx5ZSuI2BiKPA3gUG0_H9rng&h=1A66ZevDY-668QU1F2Zr6XTrN9rx5iALLNafh10bMX0 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationResults/80d012fe-32dc-4745-b6ff-544f23422a39?api-version=2023-11-02-preview&t=638645471791461478&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=msVl3bLti0xzo3J8pq32MkRa-R8zRI9780uMrMag6AKVZI3uILmx-lFAhhcvYa_UoPQOzhmnAkIoQX_hd-PJCoASmq8jsZx1k5GrLpRlebqGpHsdlLihbAeyuVJttcHymuWoBvN5ny5MP4hgJhXqeqxvdKQvcSFHZYzHW6OWPm7WRBa1Y8cEEHMf84waWvlOCAdHN955mBORHsQ8y9fApyCw2pWEqXlhdyVGskyw4W43qw5A5fEHtvyd5rgmNDbwAXJ34Jxc4ntCkonrJr-2HsTihC7-6XJ_YsAUypYsCmcoq585oxoI1eK_f9wSCNC7oGw-vKLGU0KnTFVEDBfplA&h=12l1ZRrUqk6qh4ON9AJLX-0wLF7WIpAtzR4IaiY_tkM Pragma: - no-cache Retry-After: @@ -1087,21 +1322,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - cef47401-ca3c-4184-ad1d-9394d7a19974 + - b7877bdf-8916-4d37-9ac4-a5fc837cf15e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020439Z:cef47401-ca3c-4184-ad1d-9394d7a19974 + - WESTUS2:20241014T235939Z:b7877bdf-8916-4d37-9ac4-a5fc837cf15e X-Msedge-Ref: - - 'Ref A: F2FD197DFA134F8AB4B4E1227E080FB4 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:37Z' + - 'Ref A: 391F9AC347B94AB59922201E64842922 Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:37Z' X-Powered-By: - ASP.NET status: 202 Accepted code: 202 - duration: 2.0008004s - - id: 16 + duration: 1.4986194s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1120,10 +1355,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/83cde298-2b1e-40e2-b334-49053f1e3049?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638599754795940789&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=dDkpf5upcIpUcXN3UXaxa3krg1vc94JqwYssIQM-8Kjt3VFzbhQMB_CLUdnnUgTnPhYDvCyyBHGNggMPSGinCXLJ7-qlEB76dZ_QFAFuz8DP-avShbOS9JlL8D8___bJ-WmKxRixQEbh6tkK0La0ks6bW-vyFD_BJieLB4MWFeFrzMRhNL2wz_m6Qx6m_VzJaUJfwslaw5lUHs0IRnE5kkAocXkDIXkm5Q9PMwCvDQiK1MpwP2FURDoE41Eiz1GuwWzfsCaQ5oVv3g9POUWCrcVH7SHsx3smaE7ZO728JQ0YS_CIovPTstm1RAF_W5__5sKVgVsIG2HRkJhwGHio7Q&h=_EBD1LMKRFS84L7u1VTJ9zF2_rzoFy-OF_SD622l5P8 + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/80d012fe-32dc-4745-b6ff-544f23422a39?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638645471791305230&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=ngCO2sYFnZdvzk9NeUL1Wa2pMupMGu9n0ViQMShFAzjqYgqlsTNe8n_gJ98OxjVtW7okEfTeq4Ylx7tk8hiwZ1F1Ol81grGYmS_jdQI4GQYptLHSn701zmsUGvJ6X7MMLJJKPWxwvakdvmkP0VGZVpkdX9KO-WkEPXK-xYPmMeu7hslJCL51QZQK--GZT_aAkhH62QsifyMaADUeD1D4BvPXuzX0z2felb9lBQYselHayjln8uI461vDzbhEgK1zzrbVLR60Dkp2DgS70V9QdL-qUl3ooKR0GM12GpY44gStEeyQ4a3kNC_SQ0vwZzbGXwDeqOjwNF8pLNhzDaK5mw&h=ZhMB82_GmlZmuYngHwJVdSEhxMNBrKI7FsX1jN1RHCY method: GET response: proto: HTTP/2.0 @@ -1133,7 +1368,7 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/ce5c70a6-0aca-441c-a02f-fdba60334c1a","name":"ce5c70a6-0aca-441c-a02f-fdba60334c1a","status":"Succeeded","startTime":"2024-08-23T02:04:39.4874755"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/80d012fe-32dc-4745-b6ff-544f23422a39","name":"80d012fe-32dc-4745-b6ff-544f23422a39","status":"Succeeded","startTime":"2024-10-14T23:59:39.0426433"}' 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 @@ -1144,7 +1379,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:54 GMT + - Mon, 14 Oct 2024 23:59:54 GMT Expires: - "-1" Pragma: @@ -1158,21 +1393,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - a5ed1f74-7342-4b2c-b589-ffe39568c6a1 + - 89654eeb-1649-4019-9353-a9cb35d4fb84 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020454Z:a5ed1f74-7342-4b2c-b589-ffe39568c6a1 + - WESTUS2:20241014T235954Z:89654eeb-1649-4019-9353-a9cb35d4fb84 X-Msedge-Ref: - - 'Ref A: 384D85DF53BA4E1B85C9CDFECA40B5DE Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:54Z' + - 'Ref A: 1F8A20332EEE471E8D0E8A023F87821E Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:54Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 345.5196ms - - id: 17 + duration: 363.7833ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1191,10 +1428,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q?api-version=2023-11-02-preview + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1202,20 +1439,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2653 + content_length: 2659 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerapps/ca-sf5eumltrz36q","name":"ca-sf5eumltrz36q","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w962778","azd-service-name":"web"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:47.1632493","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:04:39.3596962"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","workloadProfileName":null,"outboundIpAddresses":["4.152.187.211"],"latestRevisionName":"ca-sf5eumltrz36q--azd-1724378473","latestReadyRevisionName":"ca-sf5eumltrz36q--lxk2m3x","latestRevisionFqdn":"ca-sf5eumltrz36q--azd-1724378473.greenstone-0ed91530.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io","external":true,"targetPort":3100,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"crsf5eumltrz36q.azurecr.io","username":"crsf5eumltrz36q","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1724378473","terminationGracePeriodSeconds":null,"containers":[{"image":"crsf5eumltrz36q.azurecr.io/containerapp/web-azdtest-w962778:azd-deploy-1724378473","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/containerApps/ca-sf5eumltrz36q/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerapps/ca-gh7yf7apixojm","name":"ca-gh7yf7apixojm","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:52.5870608","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:59:38.708648"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","workloadProfileName":null,"outboundIpAddresses":["48.211.134.131"],"latestRevisionName":"ca-gh7yf7apixojm--azd-1728949373","latestReadyRevisionName":"ca-gh7yf7apixojm--l6hveka","latestRevisionFqdn":"ca-gh7yf7apixojm--azd-1728949373.wittyground-db0d30aa.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io","external":true,"targetPort":3100,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"crgh7yf7apixojm.azurecr.io","username":"crgh7yf7apixojm","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1728949373","terminationGracePeriodSeconds":null,"containers":[{"image":"crgh7yf7apixojm.azurecr.io/containerapp/web-azdtest-wddd0c3:azd-deploy-1728949373","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/containerApps/ca-gh7yf7apixojm/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' 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 Cache-Control: - no-cache Content-Length: - - "2653" + - "2659" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:54 GMT + - Mon, 14 Oct 2024 23:59:54 GMT Expires: - "-1" Pragma: @@ -1229,21 +1466,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - cace416f-915a-4250-92a2-9ebabff852ac + - b4d00ddd-367d-45e3-b6db-9d186c677871 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020455Z:cace416f-915a-4250-92a2-9ebabff852ac + - WESTUS2:20241014T235954Z:b4d00ddd-367d-45e3-b6db-9d186c677871 X-Msedge-Ref: - - 'Ref A: 92925AD41ED148EC8BE7D630F8A6F1A6 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:54Z' + - 'Ref A: 1E064094C443475197FD0A531C5E2590 Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:54Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 647.7999ms - - id: 18 + duration: 420.8474ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1264,10 +1503,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q?api-version=2023-11-02-preview + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1275,20 +1514,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2653 + content_length: 2659 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerapps/ca-sf5eumltrz36q","name":"ca-sf5eumltrz36q","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w962778","azd-service-name":"web"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:47.1632493","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:04:39.3596962"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","workloadProfileName":null,"outboundIpAddresses":["4.152.187.211"],"latestRevisionName":"ca-sf5eumltrz36q--azd-1724378473","latestReadyRevisionName":"ca-sf5eumltrz36q--lxk2m3x","latestRevisionFqdn":"ca-sf5eumltrz36q--azd-1724378473.greenstone-0ed91530.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io","external":true,"targetPort":3100,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"crsf5eumltrz36q.azurecr.io","username":"crsf5eumltrz36q","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1724378473","terminationGracePeriodSeconds":null,"containers":[{"image":"crsf5eumltrz36q.azurecr.io/containerapp/web-azdtest-w962778:azd-deploy-1724378473","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/containerApps/ca-sf5eumltrz36q/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerapps/ca-gh7yf7apixojm","name":"ca-gh7yf7apixojm","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:52.5870608","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:59:38.708648"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","workloadProfileName":null,"outboundIpAddresses":["48.211.134.131"],"latestRevisionName":"ca-gh7yf7apixojm--azd-1728949373","latestReadyRevisionName":"ca-gh7yf7apixojm--l6hveka","latestRevisionFqdn":"ca-gh7yf7apixojm--azd-1728949373.wittyground-db0d30aa.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io","external":true,"targetPort":3100,"exposedPort":0,"transport":"Auto","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"crgh7yf7apixojm.azurecr.io","username":"crgh7yf7apixojm","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1728949373","terminationGracePeriodSeconds":null,"containers":[{"image":"crgh7yf7apixojm.azurecr.io/containerapp/web-azdtest-wddd0c3:azd-deploy-1728949373","name":"main","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":null,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/containerApps/ca-gh7yf7apixojm/eventstream","delegatedIdentities":[]},"identity":{"type":"None"}}' 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 Cache-Control: - no-cache Content-Length: - - "2653" + - "2659" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:55 GMT + - Mon, 14 Oct 2024 23:59:55 GMT Expires: - "-1" Pragma: @@ -1302,21 +1541,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 5b91f866-dbc7-48bd-9b01-bd7c98c730bc + - f3e909b9-7a07-4181-bd35-89cb958073a6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020456Z:5b91f866-dbc7-48bd-9b01-bd7c98c730bc + - WESTUS2:20241014T235955Z:f3e909b9-7a07-4181-bd35-89cb958073a6 X-Msedge-Ref: - - 'Ref A: AF3715892D37472B96B874C377FF5664 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:55Z' + - 'Ref A: 42677A6E545645B7A8886542D422821B Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:54Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 562.4114ms - - id: 19 + duration: 470.2387ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1337,10 +1578,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w962778%27&api-version=2021-04-01 + - 8f80bd3b167e2344558ba668510b4efa + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wddd0c3%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1350,7 +1591,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","name":"rg-azdtest-w962778","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","DeleteAfter":"2024-08-23T03:01:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","name":"rg-azdtest-wddd0c3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","DeleteAfter":"2024-10-15T00:43:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1359,7 +1600,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:55 GMT + - Mon, 14 Oct 2024 23:59:55 GMT Expires: - "-1" Pragma: @@ -1371,19 +1612,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 8f80bd3b167e2344558ba668510b4efa + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6325e7f5-4be5-41bf-ae5f-26d4e77a04c7 + - 39c13eda-2f79-44ca-a6ee-5e1cb520ef63 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020456Z:6325e7f5-4be5-41bf-ae5f-26d4e77a04c7 + - WESTUS2:20241014T235955Z:39c13eda-2f79-44ca-a6ee-5e1cb520ef63 X-Msedge-Ref: - - 'Ref A: CD64E1AFF12543E38E6B73DF0C1B8061 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:56Z' + - 'Ref A: 3993BF01BD1549A38CF9C3761DDD4A1B Ref B: CO6AA3150219047 Ref C: 2024-10-14T23:59:55Z' status: 200 OK code: 200 - duration: 79.0044ms - - id: 20 + duration: 78.4394ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1391,7 +1634,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io + host: ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io remote_addr: "" request_uri: "" body: "" @@ -1403,7 +1646,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io:443/ + url: https://ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io:443/ method: GET response: proto: HTTP/2.0 @@ -1411,20 +1654,89 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: -1 uncompressed: false - body: stream timeout + body: Hello, `azd`. headers: + Content-Type: + - text/plain; charset=utf-8 + Date: + - Mon, 14 Oct 2024 23:59:55 GMT + Server: + - Kestrel + status: 200 OK + code: 200 + duration: 595.3333ms + - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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: 2186578 + 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=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","location":"eastus2","name":"azdtest-wddd0c3-1728949373","properties":{"correlationId":"29ab77f785aef174746f7248fcb67699","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceName":"rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceName":"rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceName":"web","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M38.5542608S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-gh7yf7apixojm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crgh7yf7apixojm.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crgh7yf7apixojm"},"websitE_URL":{"type":"String","value":"https://ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:35Z"},"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"5362782710926720725","timestamp":"2024-10-14T23:45:17.0605676Z"},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "14" + - "2186578" Content-Type: - - text/plain + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:08:56 GMT - status: 504 Gateway Timeout - code: 504 - duration: 4m0.2894376s - - id: 21 + - Tue, 15 Oct 2024 00:00: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: + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - 6ddd414e-3675-4694-aaee-2c416b23015d + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T000007Z:6ddd414e-3675-4694-aaee-2c416b23015d + X-Msedge-Ref: + - 'Ref A: 622FF8861BFD44EE86E0BF84EB960FA0 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:00Z' + status: 200 OK + code: 200 + duration: 7.413039s + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1432,7 +1744,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io + host: management.azure.com remote_addr: "" request_uri: "" body: "" @@ -1443,8 +1755,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - Go-http-client/1.1 - url: https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io:443/ + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -1452,20 +1766,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 867605 uncompressed: false - body: Hello, `azd`. + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: + Cache-Control: + - no-cache + Content-Length: + - "867605" Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:08:56 GMT - Server: - - Kestrel + - Tue, 15 Oct 2024 00:00:13 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: + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ace01ce6-2c96-4883-a2bb-ab9b058934f3 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T000013Z:ace01ce6-2c96-4883-a2bb-ab9b058934f3 + X-Msedge-Ref: + - 'Ref A: 636EF87812E942858E416703EDD5786F Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:08Z' status: 200 OK code: 200 - duration: 181.7952ms - - id: 22 + duration: 5.1029988s + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1479,17 +1817,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1497,18 +1833,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2132437 + content_length: 582659 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=zdHBTsJAEAbgZ2HPkHRbJYYb624VdGfZ7eyaeiOIpO2mNVrSUsK726K8gFy8zWT%2bw%2f9ljmRTlXVW7td1VpVYFdvyi8yORMwTtMkwldu2Xq0%2f62wIPG0PZEbo6G4EmLaySydkfE6YqrncaBSOTBEzyXeNtq9cWn0DnDHDPdeBi6UVASDjGt094Nu7oaCek6BR3Pa5TQQ8DSXXDXSiBRRUHqjGoF1q6oVxTCL1YOytVbl7kFgcoFu0is8DhTJUaEPILYX5ZEJO419G%2bEfH9GoH8L5LvmshlxFk9NL%2f0TiTGAcr55a8NyVIWWy9WRonp7IwSvs00t2icyK2Mvhgg%2bVFXPGS%2f0jp31Luvb%2fIop%2f1dPoG","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","location":"eastus2","name":"azdtest-w962778-1724378473","properties":{"correlationId":"cae59d248bac9c54b6bbaa7a290662c9","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceName":"rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceName":"rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/web","resourceName":"web","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M39.6662676S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-sf5eumltrz36q"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crsf5eumltrz36q.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crsf5eumltrz36q"},"websitE_URL":{"type":"String","value":"https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-08-23T03:01:36Z"},"environmentName":{"type":"String","value":"azdtest-w962778"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"5362782710926720725","timestamp":"2024-08-23T02:03:17.9416153Z"},"tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2132437" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:06 GMT + - Tue, 15 Oct 2024 00:00:17 GMT Expires: - "-1" Pragma: @@ -1520,19 +1856,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 492b7bd2-8957-49f2-86cf-2cd3e6b039ef + - 539bdac8-6dc4-47f9-8de5-7e601e75ecf7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020906Z:492b7bd2-8957-49f2-86cf-2cd3e6b039ef + - WESTUS2:20241015T000017Z:539bdac8-6dc4-47f9-8de5-7e601e75ecf7 X-Msedge-Ref: - - 'Ref A: 6CACE91577AC48D08A53231F8651123A Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:08:59Z' + - 'Ref A: A3DD8D4508E84946A3859A4203C6ED4F Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:13Z' status: 200 OK code: 200 - duration: 6.7250248s - - id: 23 + duration: 3.8129795s + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1551,10 +1889,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zdHBTsJAEAbgZ2HPkHRbJYYb624VdGfZ7eyaeiOIpO2mNVrSUsK726K8gFy8zWT%2bw%2f9ljmRTlXVW7td1VpVYFdvyi8yORMwTtMkwldu2Xq0%2f62wIPG0PZEbo6G4EmLaySydkfE6YqrncaBSOTBEzyXeNtq9cWn0DnDHDPdeBi6UVASDjGt094Nu7oaCek6BR3Pa5TQQ8DSXXDXSiBRRUHqjGoF1q6oVxTCL1YOytVbl7kFgcoFu0is8DhTJUaEPILYX5ZEJO419G%2bEfH9GoH8L5LvmshlxFk9NL%2f0TiTGAcr55a8NyVIWWy9WRonp7IwSvs00t2icyK2Mvhgg%2bVFXPGS%2f0jp31Luvb%2fIop%2f1dPoG + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1562,18 +1900,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376732 + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "376732" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:08 GMT + - Tue, 15 Oct 2024 00:00:20 GMT Expires: - "-1" Pragma: @@ -1585,19 +1923,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 274feb36-937b-42bc-a1e9-349129e2046d + - fe89859f-6c96-4ba9-b2fe-1e00e491e78c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020908Z:274feb36-937b-42bc-a1e9-349129e2046d + - WESTUS2:20241015T000020Z:fe89859f-6c96-4ba9-b2fe-1e00e491e78c X-Msedge-Ref: - - 'Ref A: A7EF0E448F9A48CEB66F5C7065AC7948 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:06Z' + - 'Ref A: 2A8A7EF1CE0A479DB732688D078C6D27 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:17Z' status: 200 OK code: 200 - duration: 1.7962151s - - id: 24 + duration: 2.8215829s + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1618,10 +1958,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1629,18 +1969,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3399 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w962778"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:01:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:03:17.9416153Z","duration":"PT1M39.6662676S","correlationId":"cae59d248bac9c54b6bbaa7a290662c9","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-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crsf5eumltrz36q"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-sf5eumltrz36q"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crsf5eumltrz36q.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T23:45:17.0605676Z","duration":"PT1M38.5542608S","correlationId":"29ab77f785aef174746f7248fcb67699","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-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crgh7yf7apixojm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-gh7yf7apixojm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crgh7yf7apixojm.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3399" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:08 GMT + - Tue, 15 Oct 2024 00:00:20 GMT Expires: - "-1" Pragma: @@ -1652,19 +1992,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 64a2f2bf-c1c8-4acf-a381-f5c12b68ae73 + - f9b8923c-5d9f-4a28-b5ac-5b5dc61d03ee X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020908Z:64a2f2bf-c1c8-4acf-a381-f5c12b68ae73 + - WESTUS2:20241015T000020Z:f9b8923c-5d9f-4a28-b5ac-5b5dc61d03ee X-Msedge-Ref: - - 'Ref A: C9E055FCFBE342DD99C2A021CAE4CD5B Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:08Z' + - 'Ref A: 9BE872FE04684ED886C4188B2DB212B4 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:20Z' status: 200 OK code: 200 - duration: 383.6543ms - - id: 25 + duration: 437.2094ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1685,10 +2027,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w962778%27&api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wddd0c3%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1698,7 +2040,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","name":"rg-azdtest-w962778","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","DeleteAfter":"2024-08-23T03:01:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","name":"rg-azdtest-wddd0c3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","DeleteAfter":"2024-10-15T00:43:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1707,7 +2049,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:08 GMT + - Tue, 15 Oct 2024 00:00:20 GMT Expires: - "-1" Pragma: @@ -1719,19 +2061,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 799c7976-870d-4cd3-b795-cf9648b27da0 + - 5872f91c-82fd-44b1-937e-ff4fd8f01a10 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020908Z:799c7976-870d-4cd3-b795-cf9648b27da0 + - WESTUS2:20241015T000020Z:5872f91c-82fd-44b1-937e-ff4fd8f01a10 X-Msedge-Ref: - - 'Ref A: C91E8B5F0B024AB39BE96C2FF649C135 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:08Z' + - 'Ref A: F99B051878354943ABFAEC86BAB87F35 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:20Z' status: 200 OK code: 200 - duration: 103.9116ms - - id: 26 + duration: 77.3132ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1752,10 +2096,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/resources?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1763,18 +2107,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1963 + content_length: 1974 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q","name":"log-sf5eumltrz36q","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q","name":"crsf5eumltrz36q","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w962778"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:01:43.7691552Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:01:43.7691552Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","name":"cae-sf5eumltrz36q","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:03.8822736Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:02:03.8822736Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q","name":"ca-sf5eumltrz36q","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-w962778","azd-service-name":"web"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:47.1632493Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:04:39.3596962Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm","name":"crgh7yf7apixojm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:43:44.9265531Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:43:44.9265531Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm","name":"log-gh7yf7apixojm","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","name":"cae-gh7yf7apixojm","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:01.7860347Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:44:01.7860347Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm","name":"ca-gh7yf7apixojm","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:52.5870608Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:59:38.708648Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1963" + - "1974" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:09 GMT + - Tue, 15 Oct 2024 00:00:20 GMT Expires: - "-1" Pragma: @@ -1786,19 +2130,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 84e89190-bac7-4f36-bce1-3f394b1235a9 + - cc84c2e6-23d8-4ccf-a2d8-c6d3e2a3c47f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020909Z:84e89190-bac7-4f36-bce1-3f394b1235a9 + - WESTUS2:20241015T000021Z:cc84c2e6-23d8-4ccf-a2d8-c6d3e2a3c47f X-Msedge-Ref: - - 'Ref A: E6C202A454B747C5B50DAD1188C58303 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:08Z' + - 'Ref A: D9A27366548E4BD6BFC9EBAFDF471FEE Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:20Z' status: 200 OK code: 200 - duration: 592.8157ms - - id: 27 + duration: 179.0425ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1819,10 +2165,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1830,18 +2176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3399 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w962778"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:01:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:03:17.9416153Z","duration":"PT1M39.6662676S","correlationId":"cae59d248bac9c54b6bbaa7a290662c9","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-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crsf5eumltrz36q"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-sf5eumltrz36q"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crsf5eumltrz36q.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T23:45:17.0605676Z","duration":"PT1M38.5542608S","correlationId":"29ab77f785aef174746f7248fcb67699","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-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crgh7yf7apixojm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-gh7yf7apixojm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crgh7yf7apixojm.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3399" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:09 GMT + - Tue, 15 Oct 2024 00:00:21 GMT Expires: - "-1" Pragma: @@ -1853,19 +2199,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b159a51f-5075-4c0d-9610-f10022ad6eda + - 1c641046-b0ea-4f0f-85dc-faa9302974db X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020909Z:b159a51f-5075-4c0d-9610-f10022ad6eda + - WESTUS2:20241015T000021Z:1c641046-b0ea-4f0f-85dc-faa9302974db X-Msedge-Ref: - - 'Ref A: FCBD357DF1704A3EAA4B85E9671B56F7 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:09Z' + - 'Ref A: BAFFBB26E1DA44B1B582C50B37B220F8 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:21Z' status: 200 OK code: 200 - duration: 233.0529ms - - id: 28 + duration: 231.3632ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1886,10 +2234,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w962778%27&api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wddd0c3%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1899,7 +2247,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","name":"rg-azdtest-w962778","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","DeleteAfter":"2024-08-23T03:01:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","name":"rg-azdtest-wddd0c3","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","DeleteAfter":"2024-10-15T00:43:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1908,7 +2256,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:09 GMT + - Tue, 15 Oct 2024 00:00:21 GMT Expires: - "-1" Pragma: @@ -1920,19 +2268,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - aca3e8f5-8eef-4ffd-8879-69227b5d01e1 + - f0432b8c-a8a0-4221-9d09-81563bd6a7b6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020909Z:aca3e8f5-8eef-4ffd-8879-69227b5d01e1 + - WESTUS2:20241015T000021Z:f0432b8c-a8a0-4221-9d09-81563bd6a7b6 X-Msedge-Ref: - - 'Ref A: 3116746BDA8845E6BADB751EF954CF87 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:09Z' + - 'Ref A: 4B18961B037049178A4E30BC6E8D348F Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:21Z' status: 200 OK code: 200 - duration: 53.7453ms - - id: 29 + duration: 46.2807ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1953,10 +2303,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/resources?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1964,18 +2314,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1963 + content_length: 1974 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q","name":"log-sf5eumltrz36q","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q","name":"crsf5eumltrz36q","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w962778"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:01:43.7691552Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:01:43.7691552Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q","name":"cae-sf5eumltrz36q","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:03.8822736Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:02:03.8822736Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q","name":"ca-sf5eumltrz36q","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-w962778","azd-service-name":"web"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:02:47.1632493Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:04:39.3596962Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm","name":"crgh7yf7apixojm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:43:44.9265531Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:43:44.9265531Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm","name":"log-gh7yf7apixojm","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm","name":"cae-gh7yf7apixojm","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:01.7860347Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:44:01.7860347Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm","name":"ca-gh7yf7apixojm","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-wddd0c3","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-14T23:44:52.5870608Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-14T23:59:38.708648Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1963" + - "1974" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:10 GMT + - Tue, 15 Oct 2024 00:00:21 GMT Expires: - "-1" Pragma: @@ -1987,19 +2337,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 5928fa02-2898-40bb-8fac-c8a0f4f61f99 + - dd958b49-ba6a-4d09-a246-94da6e0e0b78 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020910Z:5928fa02-2898-40bb-8fac-c8a0f4f61f99 + - WESTUS2:20241015T000021Z:dd958b49-ba6a-4d09-a246-94da6e0e0b78 X-Msedge-Ref: - - 'Ref A: 85D468D0281C4DDD85121FB440D13EE4 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:09Z' + - 'Ref A: 3132195A5B2D46ECB33A6264AA07E443 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:21Z' status: 200 OK code: 200 - duration: 488.6134ms - - id: 30 + duration: 207.0623ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2020,10 +2372,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w962778?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wddd0c3?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -2040,11 +2392,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:09:12 GMT + - Tue, 15 Oct 2024 00:00:23 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOTYyNzc4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599762745590478&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=1yzBBdj9BsbQiQf4iFnZRPXCaSnxJ2yjxYwpiGu7G4-cluwoytMdDqcrhxn-xtefngKHMibSv_Zvm09AppO0KgB0fu6_-7J4zv0xN1nmSB1YeuGrq8nlqPdbBZaSAbqss0RWS-aaPk3sydjeEO8h3cxRgtvzAIutAcu6aNEyJzXGtoG-NLOa7EtTQAHr1NRV3PR32lLXmfctMoLHMDm4zGjiRNsuII1tBeWUQKwrrYVqEyARxr9EOtnYNQzIAlNKpJWa1_ac3uj1_qgUpuGC9TS8gMIlJ2qnKODEXAmbTRhNIl9Vvzolkkw8u1EhpXxyjLMEjE0d-ic0J08qYehIKw&h=yfIaGNxdKsUdvCHY7Zx39BK96P2NHGO2TzTSXnE9M74 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXREREMEMzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645478252903805&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Me8o-NW3jyIlPnBbc050nIjR_3y5QyCt_Hg4XcvC59SyB1RSaflLc8jXZlqSZcckJ513kVWDvBRELd28pni6rWFML1579XIOJws1Xzu7vhAE6PRzt0EAmdh-sqhqn0lDOnHtpWbNP0gQeSJxQbEOUj_XWBP8sWWXfT9f0OOK9Y2mUDIdBl9sx_BBV1696oojKIhXBylXd2tMVlC47jWO2L_VzqKwsDZq6fqlotEh4viIcqsVOoHANd-nPtv8Cx0qR3dXqc_z0WTfgD3G3W7PzgqOo9BKmhJWwB3o1ygdZDdvfhq8DO_sHE3Zpo-sKE4vB31km3BSMkFmDG0gEdMrkA&h=hGC2d7YEr7qnqCqG9Hgk0Uo9RQW7OllnamXrdDP6x2U Pragma: - no-cache Retry-After: @@ -2056,19 +2408,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - 508efb03-4c94-45fc-816f-53d2f1f72e20 + - c55adba8-81b3-40c5-ba1a-75e5ec4f532d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020912Z:508efb03-4c94-45fc-816f-53d2f1f72e20 + - WESTUS2:20241015T000023Z:c55adba8-81b3-40c5-ba1a-75e5ec4f532d X-Msedge-Ref: - - 'Ref A: F4785F54C45B4A2888C836CB904B74FE Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:10Z' + - 'Ref A: 2315D617B92E4B939E9E4B0EB8D596D5 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:00:21Z' status: 202 Accepted code: 202 - duration: 2.450708s - - id: 31 + duration: 1.5232195s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2087,10 +2441,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOTYyNzc4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599762745590478&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=1yzBBdj9BsbQiQf4iFnZRPXCaSnxJ2yjxYwpiGu7G4-cluwoytMdDqcrhxn-xtefngKHMibSv_Zvm09AppO0KgB0fu6_-7J4zv0xN1nmSB1YeuGrq8nlqPdbBZaSAbqss0RWS-aaPk3sydjeEO8h3cxRgtvzAIutAcu6aNEyJzXGtoG-NLOa7EtTQAHr1NRV3PR32lLXmfctMoLHMDm4zGjiRNsuII1tBeWUQKwrrYVqEyARxr9EOtnYNQzIAlNKpJWa1_ac3uj1_qgUpuGC9TS8gMIlJ2qnKODEXAmbTRhNIl9Vvzolkkw8u1EhpXxyjLMEjE0d-ic0J08qYehIKw&h=yfIaGNxdKsUdvCHY7Zx39BK96P2NHGO2TzTSXnE9M74 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXREREMEMzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645478252903805&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Me8o-NW3jyIlPnBbc050nIjR_3y5QyCt_Hg4XcvC59SyB1RSaflLc8jXZlqSZcckJ513kVWDvBRELd28pni6rWFML1579XIOJws1Xzu7vhAE6PRzt0EAmdh-sqhqn0lDOnHtpWbNP0gQeSJxQbEOUj_XWBP8sWWXfT9f0OOK9Y2mUDIdBl9sx_BBV1696oojKIhXBylXd2tMVlC47jWO2L_VzqKwsDZq6fqlotEh4viIcqsVOoHANd-nPtv8Cx0qR3dXqc_z0WTfgD3G3W7PzgqOo9BKmhJWwB3o1ygdZDdvfhq8DO_sHE3Zpo-sKE4vB31km3BSMkFmDG0gEdMrkA&h=hGC2d7YEr7qnqCqG9Hgk0Uo9RQW7OllnamXrdDP6x2U method: GET response: proto: HTTP/2.0 @@ -2107,7 +2461,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:18:21 GMT + - Tue, 15 Oct 2024 00:10:40 GMT Expires: - "-1" Pragma: @@ -2119,19 +2473,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 9249d2f9-669e-4ad2-97ed-d20d47f92cd1 + - 61f39111-348e-4c19-80ae-e87aa3fdfe26 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021822Z:9249d2f9-669e-4ad2-97ed-d20d47f92cd1 + - WESTUS2:20241015T001040Z:61f39111-348e-4c19-80ae-e87aa3fdfe26 X-Msedge-Ref: - - 'Ref A: 3FF36BABA31547B9A0223FD3435C420D Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:09Z' + - 'Ref A: 79DC62EFDC1C43C186B480B0B5B52037 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:10:40Z' status: 200 OK code: 200 - duration: 12.58109s - - id: 32 + duration: 256.9054ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2152,10 +2508,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2163,18 +2519,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3399 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w962778","azd-provision-param-hash":"9b658bd5f3da8333af26d1ce4a9e78ec38936f6f74e4aebf03c68afa3c2ad4a6"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w962778"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:01:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:03:17.9416153Z","duration":"PT1M39.6662676S","correlationId":"cae59d248bac9c54b6bbaa7a290662c9","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-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crsf5eumltrz36q"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-sf5eumltrz36q"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crsf5eumltrz36q.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/containerApps/ca-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.App/managedEnvironments/cae-sf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.ContainerRegistry/registries/crsf5eumltrz36q"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w962778/providers/Microsoft.OperationalInsights/workspaces/log-sf5eumltrz36q"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wddd0c3","azd-provision-param-hash":"dc9ccd6eb7583d5dababfd0983554b56f1d59078f70abb2814ea372c55e4aaaf"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-wddd0c3"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T00:43:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T23:45:17.0605676Z","duration":"PT1M38.5542608S","correlationId":"29ab77f785aef174746f7248fcb67699","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-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crgh7yf7apixojm"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-gh7yf7apixojm"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crgh7yf7apixojm.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-gh7yf7apixojm.wittyground-db0d30aa.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/containerApps/ca-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.App/managedEnvironments/cae-gh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.ContainerRegistry/registries/crgh7yf7apixojm"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wddd0c3/providers/Microsoft.OperationalInsights/workspaces/log-gh7yf7apixojm"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3399" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:21 GMT + - Tue, 15 Oct 2024 00:10:40 GMT Expires: - "-1" Pragma: @@ -2186,19 +2542,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 252ea50d-f5b7-48fd-a4e7-7b8b8d3bf5fe + - f4d6edf1-fb5e-4a9c-b34f-a13a5b3dc056 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021822Z:252ea50d-f5b7-48fd-a4e7-7b8b8d3bf5fe + - WESTUS2:20241015T001041Z:f4d6edf1-fb5e-4a9c-b34f-a13a5b3dc056 X-Msedge-Ref: - - 'Ref A: 74D9005093AF404C949F614B86665267 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:22Z' + - 'Ref A: F91BD21F93944F328E86627BF7B8DFE9 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:10:40Z' status: 200 OK code: 200 - duration: 224.035ms - - id: 33 + duration: 395.6276ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2209,7 +2567,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-w962778"}}' + 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-wddd0c3"}}' form: {} headers: Accept: @@ -2223,10 +2581,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2234,20 +2592,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 568 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w962778"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T02:18:24.8180534Z","duration":"PT0.0009643S","correlationId":"a84e1cb39c813f869e50e1157baa63d5","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wddd0c3"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T00:10:44.665948Z","duration":"PT0.000638S","correlationId":"0289062e562e354bb637829460070f64","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473/operationStatuses/08584772273818516351?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373/operationStatuses/08584726558439092626?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "570" + - "568" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:24 GMT + - Tue, 15 Oct 2024 00:10:44 GMT Expires: - "-1" Pragma: @@ -2259,21 +2617,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - b681c18c-3f09-44e4-8bb8-6b8f8d6a67da + - 34f96015-fb92-4c09-81c8-86c1c0bdd787 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021825Z:b681c18c-3f09-44e4-8bb8-6b8f8d6a67da + - WESTUS2:20241015T001045Z:34f96015-fb92-4c09-81c8-86c1c0bdd787 X-Msedge-Ref: - - 'Ref A: 0216CF7CDD3743F2A0B5C101EEF4E640 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:22Z' + - 'Ref A: 84FC9BC6791C4E53888B9A6C23D22E9A Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:10:41Z' status: 200 OK code: 200 - duration: 2.8257405s - - id: 34 + duration: 4.2496263s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2292,10 +2652,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473/operationStatuses/08584772273818516351?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373/operationStatuses/08584726558439092626?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2314,7 +2674,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:24 GMT + - Tue, 15 Oct 2024 00:10:47 GMT Expires: - "-1" Pragma: @@ -2326,19 +2686,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 7cc5b53d-cc49-4b80-9b63-8fa4a6881b05 + - eb4ae2a2-d571-41e9-9845-87c643cca984 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021825Z:7cc5b53d-cc49-4b80-9b63-8fa4a6881b05 + - WESTUS2:20241015T001047Z:eb4ae2a2-d571-41e9-9845-87c643cca984 X-Msedge-Ref: - - 'Ref A: C0BB18D95DD744A2B418196FF8E38F5E Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:25Z' + - 'Ref A: DEE070B920EB4ED3B6367A5890BF6B8B Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:10:47Z' status: 200 OK code: 200 - duration: 200.1206ms - - id: 35 + duration: 2.7048703s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2357,10 +2719,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473?api-version=2021-04-01 + - 0289062e562e354bb637829460070f64 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2370,7 +2732,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w962778-1724378473","name":"azdtest-w962778-1724378473","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w962778"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:18:25.3753936Z","duration":"PT0.5583045S","correlationId":"a84e1cb39c813f869e50e1157baa63d5","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wddd0c3-1728949373","name":"azdtest-wddd0c3-1728949373","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wddd0c3"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T00:10:45.5655475Z","duration":"PT0.9002375S","correlationId":"0289062e562e354bb637829460070f64","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -2379,7 +2741,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:25 GMT + - Tue, 15 Oct 2024 00:10:47 GMT Expires: - "-1" Pragma: @@ -2391,19 +2753,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - 0289062e562e354bb637829460070f64 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1098" X-Ms-Request-Id: - - 58029ce8-e6d5-4faf-b63c-5b8a1a4c1ffa + - 487dd102-ec7a-4de3-bf1a-4c77eb777f7d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021825Z:58029ce8-e6d5-4faf-b63c-5b8a1a4c1ffa + - WESTUS2:20241015T001048Z:487dd102-ec7a-4de3-bf1a-4c77eb777f7d X-Msedge-Ref: - - 'Ref A: A40A9413DEA0491F8EE34ED383337A26 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:25Z' + - 'Ref A: 1373F9684EB64957870661B4A5549520 Ref B: CO6AA3150219047 Ref C: 2024-10-15T00:10:47Z' status: 200 OK code: 200 - duration: 369.1005ms + duration: 261.4557ms --- -env_name: azdtest-w962778 +env_name: azdtest-wddd0c3 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724378473" +time: "1728949373" 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 87a759ce3cb..3e7bd1afd2d 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,9 +22,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -44,7 +44,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:25 GMT + - Tue, 15 Oct 2024 00:49:25 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 987cb6d1-c99b-4a69-bb09-dbec0266e6ee + - 7a621a48-e251-4086-883c-c7dd0f6d8c7e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021926Z:987cb6d1-c99b-4a69-bb09-dbec0266e6ee + - WESTUS2:20241015T004925Z:7a621a48-e251-4086-883c-c7dd0f6d8c7e X-Msedge-Ref: - - 'Ref A: F09204A0934A408991620611CB89531A Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:23Z' + - 'Ref A: 4BDDCB031CA84F7BB8F66B5AA0C280F5 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:22Z' status: 200 OK code: 200 - duration: 2.7282893s + duration: 2.9511463s - id: 1 request: proto: HTTP/1.1 @@ -89,10 +91,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w1574a7%27&api-version=2021-04-01 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd5d570%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -111,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:25 GMT + - Tue, 15 Oct 2024 00:49:25 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7073556d-e5de-433a-8cae-548c48b214b8 + - 80506ab2-791b-47ed-80aa-417ec9b4ca3a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021926Z:7073556d-e5de-433a-8cae-548c48b214b8 + - WESTUS2:20241015T004925Z:80506ab2-791b-47ed-80aa-417ec9b4ca3a X-Msedge-Ref: - - 'Ref A: C7DC7230C1C848209A16FAC15D6AD410 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:26Z' + - 'Ref A: 264EB1FE205C4531BD3DC91B5C380B2B Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:25Z' status: 200 OK code: 200 - duration: 144.1889ms + duration: 108.9232ms - id: 2 request: proto: HTTP/1.1 @@ -156,9 +160,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 method: GET response: @@ -167,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44886 + content_length: 38114 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/dealmaha-test","name":"dealmaha-test","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"08/25/2024 04:15:42"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/savaity-north","name":"savaity-north","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"DeleteAfter":"08/25/2024 04:15:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/zed5311dwmin001-rg","name":"zed5311dwmin001-rg","type":"Microsoft.Resources/resourceGroups","location":"uksouth","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed5311-databricks.workspaces-dwmin-rg/providers/Microsoft.Databricks/workspaces/zed5311dwmin001","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/vision-test-rg","name":"vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"azd-env-name":"vision-test","DeleteAfter":"08/10/2024 23:21:29"},"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/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-shrejasearchtest","name":"rg-shrejasearchtest","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Owners":"shreja","DeleteAfter":"2025-10-23T04:00:14.3477795Z","ServiceDirectory":"search"},"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/rg-rohitgangulysearch-demo","name":"rg-rohitgangulysearch-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"rohitgangulysearch-demo","Owner":"rohitganguly","DoNotDelete":"AI Chat Protocol Demo"},"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/rg-wabrez-remote-state","name":"rg-wabrez-remote-state","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"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/rg-ripark","name":"rg-ripark","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test","DeleteAfter":"08/29/2024 00:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pinecone-rag-wb-pc","name":"rg-pinecone-rag-wb-pc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-pc","DeleteAfter":"07/27/2024 23:20:32"},"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/chenximgmt","name":"chenximgmt","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"2023-07-28T04:00:14.3477795Z (v-chenjiang@microsoft.com)"},"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/NI_sjlnetwork1109_eastus","name":"NI_sjlnetwork1109_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.DevCenter/networkconnections/sjlnetwork1109","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_sjlnt1109_eastus","name":"NI_sjlnt1109_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.DevCenter/networkconnections/sjlnt1109","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02","name":"v-tongMonthlyReleaseTest02","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"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/rg-joncardekeyvault","name":"rg-joncardekeyvault","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"joncarde","DeleteAfter":"2024-08-26T17:43:42.8565792Z","ServiceDirectory":"keyvault"},"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/rg-annelokeyvault","name":"rg-annelokeyvault","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"annelo","DeleteAfter":"2024-08-26T00:10:41.1972337+00:00","ServiceDirectory":"keyvault"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-2895fd4cfebebb14","name":"rg-2895fd4cfebebb14","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","DeleteAfter":"2024-08-24T18:48:17.8123235Z","Owners":"ripark"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-harshanzen","name":"rg-harshanzen","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","DeleteAfter":"2024-08-24T22:51:12.6923192Z","ServiceDirectory":"documentintelligence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-7853737b85f7dd7a","name":"rg-7853737b85f7dd7a","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2024-08-25T02:15:34.5428800Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chrissconfidentialledger","name":"rg-chrissconfidentialledger","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"confidentialledger","DeleteAfter":"2024-08-25T19:53:48.2542365Z","Owners":"chriss"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/danielgetu-test","name":"danielgetu-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"08/30/2024 23:27:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-krpratictranslation","name":"rg-krpratictranslation","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"krpratic","ServiceDirectory":"translation","DeleteAfter":"2024-08-25T23:12:10.9978530Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T18:22:47.5322959Z","Owners":"llawrence","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-juanospinaappconfiguration","name":"rg-juanospinaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"appconfiguration","DeleteAfter":"2024-08-31T20:24:52.8168871+00:00","Owners":"juanospina"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azusertables","name":"rg-azusertables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T20:25:24.3843303Z","ServiceDirectory":"tables","Owners":"azuser"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacestorage","name":"rg-codespacestorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","DeleteAfter":"2024-08-26T21:48:36.5106230Z","Owners":"codespace"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacecognitivelanguage","name":"rg-codespacecognitivelanguage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T22:37:33.2616008Z","Owners":"codespace","ServiceDirectory":"cognitivelanguage"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacetextanalytics","name":"rg-codespacetextanalytics","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","ServiceDirectory":"textanalytics","DeleteAfter":"2024-08-26T22:41:50.9973742Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespaceweb-pubsub","name":"rg-codespaceweb-pubsub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T22:51:00.6332128Z","ServiceDirectory":"web-pubsub","Owners":"codespace"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-26T23:50:04.6609363Z","Owners":"llawrence","ServiceDirectory":"eventhub"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacemonitor","name":"rg-codespacemonitor","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"monitor","Owners":"codespace","DeleteAfter":"2024-08-27T00:40:13.2038387Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespaceappconfiguration","name":"rg-codespaceappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","DeleteAfter":"2024-08-27T04:29:31.0923565Z","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacecommunication","name":"rg-codespacecommunication","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"communication","Owners":"codespace","DeleteAfter":"2024-08-27T05:23:51.8901934Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-yallappconfigtests","name":"rg-yallappconfigtests","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"yall","ServiceDirectory":"appconfiguration","DeleteAfter":"2024-08-27T05:48:49.5742829Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacedocumentintelligence","name":"rg-codespacedocumentintelligence","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-27T15:18:47.0751751Z","Owners":"codespace","ServiceDirectory":"documentintelligence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacecontainerregistry","name":"rg-codespacecontainerregistry","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","DeleteAfter":"2024-08-28T01:52:29.1255583Z","ServiceDirectory":"containerregistry"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-codespacetranslation","name":"rg-codespacetranslation","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-08-28T01:31:15.9240374Z","Owners":"codespace","ServiceDirectory":"translation"},"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/maorleger-mi","name":"maorleger-mi","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_maorleger-mi_maorleger-mi_westus2","name":"MC_maorleger-mi_maorleger-mi_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/Microsoft.ContainerService/managedClusters/maorleger-mi","tags":{"aks-managed-cluster-name":"maorleger-mi","aks-managed-cluster-rg":"maorleger-mi"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MA_defaultazuremonitorworkspace-wus2_westus2_managed","name":"MA_defaultazuremonitorworkspace-wus2_westus2_managed","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/microsoft.monitor/accounts/defaultazuremonitorworkspace-wus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mharder-log-analytics-2","name":"mharder-log-analytics-2","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 23:27:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mcpatino","name":"rg-mcpatino","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/27/2024 04:59:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-queue-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-queue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildId":"","DeleteAfter":"2024-08-26T16:17:18.3369456Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-abatch-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-abatch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2024-08-26T16:17:19.0008679Z","BuildJob":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-amemray-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-amemray-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","DeleteAfter":"2024-08-26T16:17:19.3619734Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-aqueue-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-aqueue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","DeleteAfter":"2024-08-26T16:17:18.8778033Z","ServiceDirectory":"/azure/","BuildNumber":"","Owners":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-batch-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-batch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildId":"","DeleteAfter":"2024-08-26T16:17:20.0104050Z","Owners":"","BuildJob":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-queuepull-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-queuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","DeleteAfter":"2024-08-26T16:17:20.0378449Z","BuildJob":"","BuildId":"","BuildNumber":"","Owners":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-batchw-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-batchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2024-08-26T16:17:20.7933184Z","BuildJob":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-aqueuepull-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-aqueuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2024-08-26T16:17:21.8375836Z","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llaw-servicebus-dockerfile-queuew-py-sb-stress-test-1","name":"llaw-servicebus-dockerfile-queuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","Owners":"","DeleteAfter":"2024-08-26T16:17:21.7910031Z","BuildReason":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-test","name":"rg-weilim-test","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-test","DeleteAfter":"08/30/2024 08:26:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova-rg","name":"limolkova-rg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/31/2024 03:29:18"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ripark-sberr-go18-finitesendandreceive-gosb-3","name":"ripark-sberr-go18-finitesendandreceive-gosb-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","BuildNumber":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","DeleteAfter":"2024-08-28T02:38:15.6209990Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ripark-sberr-go18-emptysessions-gosb-3","name":"ripark-sberr-go18-emptysessions-gosb-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2024-08-28T02:38:16.1870724Z","BuildJob":"","BuildReason":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg71585","name":"javacsmrg71585","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 09:00:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg90207","name":"javacsmrg90207","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 09:00:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-billwertacr","name":"rg-billwertacr","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"08/23/2024 23:26:51"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg73264","name":"javacsmrg73264","type":"Microsoft.Resources/resourceGroups","location":"westus2","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/rg-rohitganguly-docs-analysis","name":"rg-rohitganguly-docs-analysis","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":"Spring Grove Analysis"},"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/jinlongshiAZD","name":"jinlongshiAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-pycon-demo","name":"rohitganguly-pycon-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-nodejs-1","name":"rg-hemarina-nodejs-1","type":"Microsoft.Resources/resourceGroups","location":"australiasoutheast","tags":{"azd-env-name":"hemarina-nodejs-1","DeleteAfter":"09/01/2024 19:23:30"},"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/jsquire-labeler","name":"jsquire-labeler","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"","owner":"Jesse Squire","purpose":"Spring Grove testing"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/annelo-appconfig-01","name":"annelo-appconfig-01","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/25/2024 16:27:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-scaddie","name":"rg-scaddie","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/25/2024 23:18:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-sb-cores","name":"anuchan-sb-cores","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/29/2024 23:23:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-eventgrid","name":"llawrence-eventgrid","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/29/2024 23:23:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sanallur-rg","name":"sanallur-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/30/2024 08:26:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-rg1-aks1","name":"anuchan-rg1-aks1","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/30/2024 19:19:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test1","name":"rg-hemarina-test1","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"08/30/2024 23:27:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pinecone-asst-dev","name":"rg-pinecone-asst-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"project":"pinecone-assistant-azd","environment":"dev","createdBy":"automation","DeleteAfter":"08/23/2024 11:21:05"},"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-vivazqu-newasp","name":"rg-vivazqu-newasp","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-newasp","DeleteAfter":"08/29/2024 11:27:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-lastapi","name":"rg-vivazqu-lastapi","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-lastapi","DeleteAfter":"08/29/2024 11:27:45"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-0802-api","name":"rg-vivazqu-0802-api","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-0802-api","DeleteAfter":"08/29/2024 11:27:46"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_anuchan-rg1-aks1_anuchan-akscluster_eastus2","name":"MC_anuchan-rg1-aks1_anuchan-akscluster_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/anuchan-rg1-aks1/providers/Microsoft.ContainerService/managedClusters/anuchan-akscluster","tags":{"aks-managed-cluster-name":"anuchan-akscluster","aks-managed-cluster-rg":"anuchan-rg1-aks1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/alzimmer-rg","name":"alzimmer-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"08/30/2024 23:27:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-aistudio-starter","name":"rg-wabrez-aistudio-starter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-aistudio-starter","DeleteAfter":"08/31/2024 19:19:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-app-ps6bgg3amzkto","name":"rg-wabrez-std-app-ps6bgg3amzkto","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-std","DeleteAfter":"09/01/2024 04:05:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-net-ps6bgg3amzkto","name":"rg-wabrez-std-net-ps6bgg3amzkto","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-std","DeleteAfter":"09/01/2024 04:05:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-env-ps6bgg3amzkto","name":"rg-wabrez-std-env-ps6bgg3amzkto","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-std","DeleteAfter":"09/01/2024 04:05:56"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ME_cae-ps6bgg3amzkto_rg-wabrez-std-env-ps6bgg3amzkto_eastus2","name":"ME_cae-ps6bgg3amzkto_rg-wabrez-std-env-ps6bgg3amzkto_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-wabrez-std-env-ps6bgg3amzkto/providers/microsoft.app/managedenvironments/cae-ps6bgg3amzkto","tags":{"aca-managed-env-id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-std-env-ps6bgg3amzkto/providers/Microsoft.App/managedEnvironments/cae-ps6bgg3amzkto"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-net-2acu6gpfwot3u","name":"rg-wabrez-stacks-poc-net-2acu6gpfwot3u","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-stacks-poc","DeleteAfter":"09/01/2024 04:05:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-app-2acu6gpfwot3u","name":"rg-wabrez-stacks-poc-app-2acu6gpfwot3u","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-stacks-poc","DeleteAfter":"09/01/2024 04:05:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-env-2acu6gpfwot3u","name":"rg-wabrez-stacks-poc-env-2acu6gpfwot3u","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-stacks-poc","DeleteAfter":"09/01/2024 04:06:00"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ME_cae-2acu6gpfwot3u_rg-wabrez-stacks-poc-env-2acu6gpfwot3u_eastus2","name":"ME_cae-2acu6gpfwot3u_rg-wabrez-stacks-poc-env-2acu6gpfwot3u_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-wabrez-stacks-poc-env-2acu6gpfwot3u/providers/microsoft.app/managedenvironments/cae-2acu6gpfwot3u","tags":{"aca-managed-env-id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-stacks-poc-env-2acu6gpfwot3u/providers/Microsoft.App/managedEnvironments/cae-2acu6gpfwot3u"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-oioioio","name":"rg-oioioio","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"oioioio","DeleteAfter":"08/23/2024 04:05:53"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chatapp822-rg","name":"chatapp822-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chatapp822","DeleteAfter":"08/23/2024 23:26:52"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9dc043","name":"rg-azdtest-w9dc043","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-08-23T01:47:50Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w19ee9a","name":"rg-azdtest-w19ee9a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w19ee9a","DeleteAfter":"2024-08-23T03:01:35Z"},"properties":{"provisioningState":"Deleting"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"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/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/zed5311dwmin001-rg","name":"zed5311dwmin001-rg","type":"Microsoft.Resources/resourceGroups","location":"uksouth","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed5311-databricks.workspaces-dwmin-rg/providers/Microsoft.Databricks/workspaces/zed5311dwmin001","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/vision-test-rg","name":"vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"azd-env-name":"vision-test","DeleteAfter":"08/10/2024 23:21:29"},"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/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/rg-pinecone-rag-wb-pc","name":"rg-pinecone-rag-wb-pc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-pc","DeleteAfter":"07/27/2024 23:20:32"},"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/v-tongMonthlyReleaseTest02","name":"v-tongMonthlyReleaseTest02","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"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/rg-creative-writer-dev","name":"rg-creative-writer-dev","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{"azd-env-name":"creative-writer-dev","DeleteAfter":"10/15/2024 20:20:34"},"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/annelo-azure-openai-rg","name":"annelo-azure-openai-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"09/29/2024 18:49:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nibhatimonitor","name":"rg-nibhatimonitor","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-21T21:43:31.0109728+00:00","Owners":"nibhati","ServiceDirectory":"monitor"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-15T21:52:05.3931246Z","Owners":"llawrence","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventhubs","Owners":"larryo","DeleteAfter":"2024-10-19T21:56:41.6731478Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-vw","name":"anuchan-vw","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"10/21/2024 19:20:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-9a7de3a313caae8c","name":"rg-9a7de3a313caae8c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2024-10-17T00:57:10.8765580Z","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv82897c8","name":"rgcomv82897c8","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"10/15/2024 07:14:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-19T16:31:30.4051359Z","Owners":"llawrence","ServiceDirectory":"eventhub"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-schemaregmap","name":"rg-schemaregmap","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","ServiceDirectory":"schemaregistry","DeleteAfter":"2024-10-19T17:34:07.3016394Z"},"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","DeleteAfter":"2024-11-19T19:02:52.9728562Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2024-11-19T21:32:52.6907040Z","ServiceDirectory":"messaging/azservicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaztables","name":"rg-riparkaztables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-19T23:57:18.9682874Z","ServiceDirectory":"data/aztables","Owners":"ripark"},"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/maorleger-mi","name":"maorleger-mi","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_maorleger-mi_maorleger-mi_westus2","name":"MC_maorleger-mi_maorleger-mi_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/Microsoft.ContainerService/managedClusters/maorleger-mi","tags":{"aks-managed-cluster-name":"maorleger-mi","aks-managed-cluster-rg":"maorleger-mi"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MA_defaultazuremonitorworkspace-wus2_westus2_managed","name":"MA_defaultazuremonitorworkspace-wus2_westus2_managed","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/microsoft.monitor/accounts/defaultazuremonitorworkspace-wus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cobey-aitk-test","name":"cobey-aitk-test","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/18/2024 00:29:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-ai","name":"rg-weilim-ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"tags":"working","DeleteAfter":"10/21/2024 23:15:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg51944","name":"javacsmrg51944","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 03:13:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg72693","name":"javacsmrg72693","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg45615","name":"javacsmrg45615","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg70899","name":"javacsmrg70899","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv56676d9","name":"rgcomv56676d9","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv507257e","name":"rgcomv507257e","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv25092df","name":"rgcomv25092df","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv891957d","name":"rgcomv891957d","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv35157c4","name":"rgcomv35157c4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv3360256","name":"rgcomv3360256","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv4247092","name":"rgcomv4247092","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv595754b","name":"rgcomv595754b","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antischujqnqlqjzs4go","name":"antischujqnqlqjzs4go","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"cloudmachine-restaurantreviewapp-local","abc":"def","cloudmachine-friendlyname":"restaurantreviewapp","DeleteAfter":"10/15/2024 20:20:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre11-vertx-async-get-java-azure-core-http-1","name":"jairmyree-jre11-vertx-async-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","DeleteAfter":"2024-10-21T20:42:24.0563192Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre21-vertx-sync-get-java-azure-core-http-1","name":"jairmyree-jre21-vertx-sync-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildJob":"","Owners":"","DeleteAfter":"2024-10-21T20:42:24.5822954Z","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre11-vertx-sync-get-java-azure-core-http-1","name":"jairmyree-jre11-vertx-sync-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2024-10-21T20:45:25.9420842Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","BuildId":""},"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/jinlongshiAZD","name":"jinlongshiAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-pycon-demo","name":"rohitganguly-pycon-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":""},"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-kashifkhan","name":"rg-kashifkhan","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"10/18/2024 00:29:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-labeler","name":"jsquire-labeler","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"","owner":"Jesse Squire","purpose":"Spring Grove testing"},"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/test-ai-toolkit-rg","name":"test-ai-toolkit-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-ai-toolkit","DeleteAfter":"08/30/2024 16:32:58"},"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/vision-dev-rg","name":"vision-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev","DeleteAfter":"09/05/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-dev-test-rg","name":"vision-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev-test","DeleteAfter":"09/05/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-chat-test-rg","name":"vision-chat-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-chat-test","DeleteAfter":"09/06/2024 07:22:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-rg","name":"chat-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev","DeleteAfter":"09/06/2024 07:22:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ai-chat-vision-test-rg","name":"ai-chat-vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ai-chat-vision-test","DeleteAfter":"09/06/2024 07:22:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-test-rg","name":"chat-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev-test","DeleteAfter":"09/06/2024 07:22:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gracekulin-vision2-rg","name":"gracekulin-vision2-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"gracekulin-vision2","DeleteAfter":"09/29/2024 16:31:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-rg","name":"vision-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision","DeleteAfter":"09/20/2024 18:49:42"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-extensions","name":"rg-wabrez-extensions","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca","name":"rg-wabrez-todo-aca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/24/2024 23:23:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-asd23lllk","name":"rg-test-tc-asd23lllk","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-asd123","name":"rg-test-tc-asd123","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:36"},"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-adjklp898","name":"rg-test-tc-adjklp898","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 03:21:44"},"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_ai","name":"rg-wabrez_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/21/2024 03:20:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkovaai","name":"rg-limolkovaai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/13/2024 07:20:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihuasample","name":"rg-shihuasample","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihuasample","DeleteAfter":"10/15/2024 07:14:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhss","name":"rg-mhss","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mhss","DeleteAfter":"10/15/2024 11:15:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh15","name":"rg-mh15","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mh15","DeleteAfter":"10/15/2024 11:15:51"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-writer-dev","name":"rg-contoso-writer-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"contoso-writer-dev","DeleteAfter":"10/15/2024 20:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-appicbjybzfq3rra-rg","name":"chat-appicbjybzfq3rra-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-app","DeleteAfter":"10/15/2024 20:20:38"},"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":{"DeleteAfter":"10/24/2024 20:20:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w797be2","name":"rg-azdtest-w797be2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-10-15T00:00:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w13c21d","name":"rg-azdtest-w13c21d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w13c21d","DeleteAfter":"2024-10-15T00:00:56Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39acd5","name":"rg-azdtest-w39acd5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-10-15T01:17:39Z"},"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/rg-nlkm-pe-mng","name":"rg-nlkm-pe-mng","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-ip60-pe-umg","name":"rg-ip60-pe-umg","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"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-vgx0","name":"rg-vgx0","type":"Microsoft.Resources/resourceGroups","location":"israelcentral","tags":{"DeleteAfter":"10/15/2024 11:15:52"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/20/2024 07:21:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg8059547b","name":"rg8059547b","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 03:13:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg76794b","name":"rg76794b","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 03:13:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-gzrr","name":"rg-gzrr","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 07:14:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"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"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "44886" + - "38114" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:25 GMT + - Tue, 15 Oct 2024 00:49:25 GMT Expires: - "-1" Pragma: @@ -190,18 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - e98cfe84-81ea-4369-906a-db51a9b7232a + - 8e2a7d0e-a5dd-490c-a36b-17b6e26391ca X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021926Z:e98cfe84-81ea-4369-906a-db51a9b7232a + - WESTUS2:20241015T004925Z:8e2a7d0e-a5dd-490c-a36b-17b6e26391ca X-Msedge-Ref: - - 'Ref A: D6AECA7D9DD8489B9B8DD6587F615627 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:26Z' + - 'Ref A: 1645EACEECF845ABAE44D638F284EEAA Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:25Z' status: 200 OK code: 200 - duration: 65.4707ms + duration: 62.663ms - id: 3 request: proto: HTTP/1.1 @@ -223,9 +229,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -234,18 +240,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2130656 + content_length: 2186573 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=xZFNT8JAEIZ%2fCz1D0m0pMdws2yro7LLb2TXrjSA2%2fUhrtKRlDf%2fdBeToRQ%2fe5uOdZJ48n962bbqi2W%2b6om2wrXbNhzf%2f9JLbDFV2qprd0K03711xCjzsDt7cI6ObEUMzgDUTb3xOyLa%2f7kgYjGSVxkDzXqhnCkpMGY1jSWsqfJ2CSnyGMRWoFwxfXiVh%2fDHze06Vy21DRg3haAgrBQFcDnxBBPrDSpA6kToGJDWTKlK81HeAZgrlNmKYWMA8gFK528R384l3HH9jBL%2fkmP2VI2BUOY58YCWErCDX%2f%2b%2bllpnUbK31ijqmDEmcqlqupIYZVJKL2oTCLq1OUgX%2bW3xieUr%2bU0kAtiJnHBQRFD8rcZkQqDk4FQdOcwtWRBxFz8TkrOSC4ZQ0%2b7q%2bUoWX9nj8Ag%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2130656" + - "2186573" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:33 GMT + - Tue, 15 Oct 2024 00:49:32 GMT Expires: - "-1" Pragma: @@ -257,18 +263,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6cb48600-c095-4365-ace3-812d4fa554a5 + - a095d762-dffb-46d0-84ce-23b1773055e6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021933Z:6cb48600-c095-4365-ace3-812d4fa554a5 + - WESTUS2:20241015T004932Z:a095d762-dffb-46d0-84ce-23b1773055e6 X-Msedge-Ref: - - 'Ref A: 76AB9AC222B24A0581543C93C084AE68 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:26Z' + - 'Ref A: 16B8B46E025E425985014705FD92576A Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:25Z' status: 200 OK code: 200 - duration: 7.5511557s + duration: 6.9023751s - id: 4 request: proto: HTTP/1.1 @@ -288,10 +296,144 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 867605 + 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=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "867605" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:49: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: + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 8c6e33c0-d6a7-46af-b95c-9cdc2d3ba561 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T004937Z:8c6e33c0-d6a7-46af-b95c-9cdc2d3ba561 + X-Msedge-Ref: + - 'Ref A: 8110E51142A3493AAE3307AF2039E294 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:32Z' + status: 200 OK + code: 200 + duration: 4.9013856s + - id: 5 + 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582659 + 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=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "582659" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:49: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: + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 971c1f84-96dc-474c-ab66-eec62dbe42ba + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T004941Z:971c1f84-96dc-474c-ab66-eec62dbe42ba + X-Msedge-Ref: + - 'Ref A: 3899FEC802884B3D9148D122D563C2E3 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:38Z' + status: 200 OK + code: 200 + duration: 3.5793025s + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFNT8JAEIZ%2fCz1D0m0pMdws2yro7LLb2TXrjSA2%2fUhrtKRlDf%2fdBeToRQ%2fe5uOdZJ48n962bbqi2W%2b6om2wrXbNhzf%2f9JLbDFV2qprd0K03711xCjzsDt7cI6ObEUMzgDUTb3xOyLa%2f7kgYjGSVxkDzXqhnCkpMGY1jSWsqfJ2CSnyGMRWoFwxfXiVh%2fDHze06Vy21DRg3haAgrBQFcDnxBBPrDSpA6kToGJDWTKlK81HeAZgrlNmKYWMA8gFK528R384l3HH9jBL%2fkmP2VI2BUOY58YCWErCDX%2f%2b%2bllpnUbK31ijqmDEmcqlqupIYZVJKL2oTCLq1OUgX%2bW3xieUr%2bU0kAtiJnHBQRFD8rcZkQqDk4FQdOcwtWRBxFz8TkrOSC4ZQ0%2b7q%2bUoWX9nj8Ag%3d%3d + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -299,18 +441,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383149 + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "383149" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:35 GMT + - Tue, 15 Oct 2024 00:49:44 GMT Expires: - "-1" Pragma: @@ -322,19 +464,94 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - cf28a480-1ca4-47eb-a431-bdacf7b73d81 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T004944Z:cf28a480-1ca4-47eb-a431-bdacf7b73d81 + X-Msedge-Ref: + - 'Ref A: 4514C643EF6C44CF88A01B267540DCF1 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:41Z' + status: 200 OK + code: 200 + duration: 2.45842s + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 7608 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wd5d570"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"7771222558848349697"}},"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":"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.29.47.4906","templateHash":"8937352026316128621"}},"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''), ''2022-09-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''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "7608" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2693 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","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-wd5d570","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd5d570"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/providers/Microsoft.Authorization/roleAssignments/7c32d5d2-9aa0-51eb-bf7c-f833f7e10743"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2693" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:49: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: + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - b0382192-6510-44d5-86a4-a6a8055b3044 + - 137df77d-6d25-4d5e-8351-dedd3b6c0b1e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021936Z:b0382192-6510-44d5-86a4-a6a8055b3044 + - WESTUS2:20241015T004946Z:137df77d-6d25-4d5e-8351-dedd3b6c0b1e X-Msedge-Ref: - - 'Ref A: D2CDB87EE4154150B0D98184CE2401FA Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:34Z' + - 'Ref A: B430D50B287A49E5A2147E7E3408B4BD Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:44Z' status: 200 OK code: 200 - duration: 2.0222281s - - id: 5 + duration: 2.0174955s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -345,7 +562,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w1574a7"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"7771222558848349697"}},"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":"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.29.47.4906","templateHash":"8937352026316128621"}},"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''), ''2022-09-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''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wd5d570"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"7771222558848349697"}},"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":"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.29.47.4906","templateHash":"8937352026316128621"}},"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''), ''2022-09-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''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"}}}},"tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"}}' form: {} headers: Accept: @@ -359,10 +576,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -372,10 +589,10 @@ interactions: trailer: {} content_length: 1391 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w1574a7"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:19:36Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T02:19:38.7053907Z","duration":"PT0.0006208S","correlationId":"a0b54248836ba1cc2e91b499ef84bc76","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-w1574a7","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w1574a7"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:46Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T00:49:49.1973162Z","duration":"PT0.0004465S","correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","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-wd5d570","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd5d570"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/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-w1574a7-1724379555/operationStatuses/08584772273087284703?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349/operationStatuses/08584726534987993993?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -383,7 +600,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:38 GMT + - Tue, 15 Oct 2024 00:49:50 GMT Expires: - "-1" Pragma: @@ -395,21 +612,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - dc96eec6-0342-44b6-9d46-128c403fc183 + - acc562d1-d0b0-4d75-a1d8-6ad2c2487748 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021939Z:dc96eec6-0342-44b6-9d46-128c403fc183 + - WESTUS2:20241015T004950Z:acc562d1-d0b0-4d75-a1d8-6ad2c2487748 X-Msedge-Ref: - - 'Ref A: 6C7DC4D6670E482B9F21569693439431 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:36Z' + - 'Ref A: CB89545F462B44EFB8003FB1A2B65026 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:49:46Z' status: 201 Created code: 201 - duration: 2.9405167s - - id: 6 + duration: 4.2517154s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -428,10 +647,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555/operationStatuses/08584772273087284703?api-version=2021-04-01 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349/operationStatuses/08584726534987993993?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -450,7 +669,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:11 GMT + - Tue, 15 Oct 2024 00:52:22 GMT Expires: - "-1" Pragma: @@ -462,19 +681,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - d9ba8f3e-9cae-4020-88af-b2810601b646 + - 14652037-cabf-45f5-974a-6c16fcd7d22c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022211Z:d9ba8f3e-9cae-4020-88af-b2810601b646 + - WESTUS2:20241015T005222Z:14652037-cabf-45f5-974a-6c16fcd7d22c X-Msedge-Ref: - - 'Ref A: 1303E71FEB924948A4F120634B807214 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:11Z' + - 'Ref A: 04C325358A2C40D6ADD5CD60B8CF6C29 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:22Z' status: 200 OK code: 200 - duration: 420.0035ms - - id: 7 + duration: 333.1376ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -493,10 +714,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -504,18 +725,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2786 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w1574a7"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:19:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:21:49.4494033Z","duration":"PT2M10.7446334S","correlationId":"a0b54248836ba1cc2e91b499ef84bc76","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-w1574a7","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w1574a7"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrhdcsusgdiumec.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/providers/Microsoft.Authorization/roleAssignments/9150bfe3-777a-5e13-9104-0040e563e250"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:46Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T00:52:16.2629052Z","duration":"PT2M27.0660355S","correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","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-wd5d570","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd5d570"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr4kpuurnmdpq2o.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/providers/Microsoft.Authorization/roleAssignments/7c32d5d2-9aa0-51eb-bf7c-f833f7e10743"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2786" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:11 GMT + - Tue, 15 Oct 2024 00:52:22 GMT Expires: - "-1" Pragma: @@ -527,19 +748,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a37f09ab-55ef-4992-94dd-cb217ed8c954 + - 38292dc7-8f85-4b97-b7f3-88e9a7a7ec5e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022211Z:a37f09ab-55ef-4992-94dd-cb217ed8c954 + - WESTUS2:20241015T005222Z:38292dc7-8f85-4b97-b7f3-88e9a7a7ec5e X-Msedge-Ref: - - 'Ref A: B447FAA8E53F4C7A8CAE12D51F2A8E95 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:11Z' + - 'Ref A: 43ABF59310B949EF91B326C8AC72FA98 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:22Z' status: 200 OK code: 200 - duration: 383.8966ms - - id: 8 + duration: 361.4338ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -560,10 +783,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w1574a7%27&api-version=2021-04-01 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd5d570%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -573,7 +796,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7","name":"rg-azdtest-w1574a7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","DeleteAfter":"2024-08-23T03:19:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570","name":"rg-azdtest-wd5d570","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","DeleteAfter":"2024-10-15T01:49:46Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -582,7 +805,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:11 GMT + - Tue, 15 Oct 2024 00:52:22 GMT Expires: - "-1" Pragma: @@ -594,19 +817,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 8017bd5ee4c4a2758d5cafc6b7a9182f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - dc23bfd3-fd27-4f90-8c0e-fd90ef404258 + - 94ce5aac-f265-428c-a171-930e97706759 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022212Z:dc23bfd3-fd27-4f90-8c0e-fd90ef404258 + - WESTUS2:20241015T005222Z:94ce5aac-f265-428c-a171-930e97706759 X-Msedge-Ref: - - 'Ref A: 80E5DEFB7D174BE498A1FF7722DCF2FE Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:12Z' + - 'Ref A: 1F098C37D1F24FDBA3742BA003112EEE Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:22Z' status: 200 OK code: 200 - duration: 66.9535ms - - id: 9 + duration: 101.3144ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -627,10 +852,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w1574a7%27&api-version=2021-04-01 + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd5d570%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -640,7 +865,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7","name":"rg-azdtest-w1574a7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","DeleteAfter":"2024-08-23T03:19:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570","name":"rg-azdtest-wd5d570","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","DeleteAfter":"2024-10-15T01:49:46Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -649,7 +874,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:13 GMT + - Tue, 15 Oct 2024 00:52:24 GMT Expires: - "-1" Pragma: @@ -661,19 +886,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - ece796f6-574f-4125-baab-60d07cb6925a + - 64d92dac-0d85-4f0a-8356-845bf7bb1809 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022213Z:ece796f6-574f-4125-baab-60d07cb6925a + - WESTUS2:20241015T005224Z:64d92dac-0d85-4f0a-8356-845bf7bb1809 X-Msedge-Ref: - - 'Ref A: 98164A538331440BA90A838F2FC1B8D1 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:13Z' + - 'Ref A: B5A8828F2DA5480EA996A98E11941162 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:24Z' status: 200 OK code: 200 - duration: 64.2348ms - - id: 10 + duration: 72.4937ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -694,10 +921,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27app%27&api-version=2021-04-01 + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/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 @@ -707,7 +934,7 @@ interactions: trailer: {} content_length: 670 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec","name":"app-hdcsusgdiumec","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4","clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170"}}},"tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o","name":"app-4kpuurnmdpq2o","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9","clientId":"69a807c8-bc07-46b2-8637-70335088ccb5"}}},"tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"}}]}' headers: Cache-Control: - no-cache @@ -716,7 +943,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:14 GMT + - Tue, 15 Oct 2024 00:52:30 GMT Expires: - "-1" Pragma: @@ -728,19 +955,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - aeb86713-f6c1-41f1-b0af-206ffc83687f + - 7cc4aca5-0228-4319-b6a0-3b5082b09066 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022214Z:aeb86713-f6c1-41f1-b0af-206ffc83687f + - WESTUS2:20241015T005230Z:7cc4aca5-0228-4319-b6a0-3b5082b09066 X-Msedge-Ref: - - 'Ref A: 98109D18468242D48E4885D39C643611 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:13Z' + - 'Ref A: FA5BF0EBA9674A9497AF362C938ED8FF Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:24Z' status: 200 OK code: 200 - duration: 782.832ms - - id: 11 + duration: 6.7052803s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -763,10 +992,10 @@ interactions: Content-Length: - "0" User-Agent: - - azsdk-go-armcontainerregistry/v0.6.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armcontainerregistry/v0.6.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/listBuildSourceUploadUrl?api-version=2019-06-01-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/listBuildSourceUploadUrl?api-version=2019-06-01-preview method: POST response: proto: HTTP/2.0 @@ -774,18 +1003,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 345 + content_length: 349 uncompressed: false - body: '{"relativePath":"source/202408230000/5fb4dfd78240a0c5e7bec9c7b63db67f.tar.gz","uploadUrl":"https://eus2managed192.blob.core.windows.net/f570554b08d2426a8b5950e32748651f-amdlkui4rt/source/202408230000/5fb4dfd78240a0c5e7bec9c7b63db67f.tar.gz?se=2024-08-23T03%3A22%3A14Z\u0026sig=SANITIZED\u0026sp=cw\u0026sr=b\u0026sv=2023-01-03"}' + body: '{"relativePath":"source/202410150000/3c86fb099e6d508b15967025cf50e87b.tar.gz","uploadUrl":"https://eus2managed225.blob.core.windows.net/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/source/202410150000/3c86fb099e6d508b15967025cf50e87b.tar.gz?se=2024-10-15T01%3A52%3A31Z\u0026sig=SANITIZED\u0026sp=cw\u0026sr=b\u0026sv=2023-01-03"}' headers: Cache-Control: - no-cache Content-Length: - - "345" + - "349" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:14 GMT + - Tue, 15 Oct 2024 00:52:31 GMT Expires: - "-1" Pragma: @@ -797,19 +1026,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 4f7abaec-fcf9-4515-81db-adf1a1a85b8e + - 9a6ea9ce-3bf1-49f9-84ac-df226e104fd4 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022214Z:bbbbf932-e2ed-470e-aecf-ff34cf8af338 + - WESTUS2:20241015T005231Z:2aa1dc41-bed2-4d07-a699-4821b10e54fe X-Msedge-Ref: - - 'Ref A: AF57B78C51B042A68AA54FE4A3EB99D5 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:14Z' + - 'Ref A: F7304A36A59A494186CE44A85FAB206C Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:31Z' status: 200 OK code: 200 - duration: 615.7925ms - - id: 12 + duration: 560.6456ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -817,19 +1048,19 @@ interactions: content_length: 456 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: !!binary | - H4sIAAAAAAAA/+yVUWvbMBDH/Wzwdzj8Yhc8+ew6SknJXpKOjlFS0sE2xqAivmVuXcmVlJ - Ft9LsP28mW5aUPmxMG/r0InS53/4v4W1O1uCf9uSjJ6QxERM55syLi/ooJT5wk4zwZDpEP - 0MEkSQeZA9idpN+sjBXawb/utT/cf8Kr+ewKpMpplKae67nvZvM309dziEVVee5kdv0BKr - G4F0tid0bJ3Xghc1qzO7OJXby/nt1cwCki1oUmV1P46NeV/Qj8ba7/6dgD9/zB9mK67PGc - /7NssOd/HJ72/j8ICyWNhS/WVjAGTY+rQlMY1Pvg5Lz2cZtgSH8lDeMmky00CUs3TSwMNT - 1GoMmcwPgl/PBcAKi3zFhhV2aicoIxpIjnO0dkL0nkpMNgoqQlaV+8/VZREEFgaW3jqhSF - bARsf0EyD4NLKksVwa34nt+y5vipFdnKY2VhLMnwDM8wgnC9K6geQ5XESrUMg1Y56JWUhV - yCaP+AURwn6ZAhQ5aM6hrxtsWxL6lDdj/uXfV4zv/Icf/9H2S89/8h2NjDl+KB/BH4oqr8 - aBN7EIWsY78eb899Orbenp6enp5/w88AAAD//+x9Pe0AEAAA + H4sIAAAAAAAA/+yV32vbMBDH/Wzw/3D4xS548vlHnJKSvSQdHaOkpINtjEFFfMvcupIrKS + Pb6P8+bCdb5pc+bG4Y+PMidLrcfS/ia83l6o7U56IkqzcQEbMsa1ZE7K4YZZEVpWNMkiTD + aGRhFMVpbAH2J+k3G224svCve3WH+094tVxcgpA5TeLYsR373WL5Zv56CSGvKseeLa4+QM + VXd3xN7FZLcRgvRE5bdqt3sfP3V4vrc0gQsS40u5zDR7eu7Abg7nPdT8ceeOAP9hfTZ4+n + /J+mo47/cRwP/n8WVlJoA1+MqWAKih42hSLfq/feyVnt4zZBk/pKCqZNJlsp4oaum5jvK3 + oIQJE+gelL+OHYAFBvmTbcbPRM5gRTiBHPDo7IXBDPSfneTApDwrx4+60iLwDP0NaEVckL + 0QjY/4JE7nsXVJYygBv+Pb9hzfFjK7KVx8pCGxL+KZ5iAP72UFA9hiyJlXLte61yUBshCr + EG3v4BkzCM4jFDhiya1DXCfYtjX1KPHH7c++rxlP8xw+77P0rSwf/Pwc4eruD35E7A5VXl + BrvYPS9EHfv1eDv247H1DgwMDAz8G34GAAD//x55SjYAEAAA form: {} headers: Accept: @@ -843,12 +1074,12 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Blob-Type: - BlockBlob X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/source/202408230000/5fb4dfd78240a0c5e7bec9c7b63db67f.tar.gz?se=2024-08-23T03%3A22%3A14Z&sig=SANITIZED&sp=cw&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/source/202410150000/3c86fb099e6d508b15967025cf50e87b.tar.gz?se=2024-10-15T01%3A52%3A31Z&sig=SANITIZED&sp=cw&sr=b&sv=2023-01-03 method: PUT response: proto: HTTP/1.1 @@ -863,27 +1094,27 @@ interactions: Content-Length: - "0" Content-Md5: - - L81OMkZxR0QJTzL2qlODQA== + - Sao5NMdtO4EpWOBMjqacvQ== Date: - - Fri, 23 Aug 2024 02:22:14 GMT + - Tue, 15 Oct 2024 00:52:32 GMT Etag: - - '"0x8DCC31A6776C845"' + - '"0x8DCECB3A6CDA0F5"' Last-Modified: - - Fri, 23 Aug 2024 02:22:15 GMT + - Tue, 15 Oct 2024 00:52:32 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Content-Crc64: - - xZLfqk9O0B0= + - Gk9wEPYznFM= X-Ms-Request-Id: - - 43f556fc-701e-004e-4a03-f50e04000000 + - f4a87b06-201e-007c-299c-1ea8ad000000 X-Ms-Request-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 201 Created code: 201 - duration: 411.1809ms - - id: 13 + duration: 589.0439ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -894,7 +1125,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"dockerFilePath":"Dockerfile","imageNames":["acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555"],"isPushEnabled":true,"platform":{"os":"Linux","architecture":"amd64"},"sourceLocation":"source/202408230000/5fb4dfd78240a0c5e7bec9c7b63db67f.tar.gz","type":"DockerBuildRequest"}' + body: '{"dockerFilePath":"Dockerfile","imageNames":["acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349"],"isPushEnabled":true,"platform":{"os":"Linux","architecture":"amd64"},"sourceLocation":"source/202410150000/3c86fb099e6d508b15967025cf50e87b.tar.gz","type":"DockerBuildRequest"}' form: {} headers: Accept: @@ -908,10 +1139,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armcontainerregistry/v0.6.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armcontainerregistry/v0.6.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/scheduleRun?api-version=2019-06-01-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/scheduleRun?api-version=2019-06-01-preview method: POST response: proto: HTTP/2.0 @@ -919,18 +1150,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 523 uncompressed: false - body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Queued","lastUpdatedTime":"2024-08-23T02:22:15+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:22:15.4160843+00:00"}}' + body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Queued","lastUpdatedTime":"2024-10-15T00:52:32+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:52:32.3589225+00:00"}}' headers: Cache-Control: - no-cache Content-Length: - - "521" + - "523" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:32 GMT Expires: - "-1" Pragma: @@ -942,19 +1173,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1198" + - "799" X-Ms-Request-Id: - - ac3fe29d-64a7-44ce-901b-7764a1c2a464 + - 20d37319-e769-4030-a77a-003a68f91880 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022216Z:f3c83404-e3be-47dc-9023-2980b23430fd + - WESTUS2:20241015T005232Z:2f40f829-9c93-4041-a7ec-549d2127cc20 X-Msedge-Ref: - - 'Ref A: F6262EC9E8DD4A1B949260B87B134AA7 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:15Z' + - 'Ref A: 49BDBAF23BB946CAB1209A4AD4EBB829 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:32Z' status: 200 OK code: 200 - duration: 1.0238964s - - id: 14 + duration: 606.1733ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -977,10 +1210,10 @@ interactions: Content-Length: - "0" User-Agent: - - azsdk-go-armcontainerregistry/v0.6.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armcontainerregistry/v0.6.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/runs/ch1/listLogSasUrl?api-version=2019-06-01-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/runs/ch1/listLogSasUrl?api-version=2019-06-01-preview method: POST response: proto: HTTP/2.0 @@ -988,18 +1221,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 234 + content_length: 228 uncompressed: false - body: '{"logLink":"https://eus2managed192.blob.core.windows.net/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z\u0026sig=SANITIZED\u0026sp=r\u0026sr=b\u0026sv=2023-01-03"}' + body: '{"logLink":"https://eus2managed225.blob.core.windows.net/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z\u0026sig=SANITIZED\u0026sp=r\u0026sr=b\u0026sv=2023-01-03"}' headers: Cache-Control: - no-cache Content-Length: - - "234" + - "228" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Expires: - "-1" Pragma: @@ -1011,19 +1244,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 41736190-9a2e-4f26-bc11-2683c7e6bff0 + - a161f3b9-7b6f-4105-95b7-65c89d32b245 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022216Z:c815fd99-01c8-43d4-bcc8-5a53d7501213 + - WESTUS2:20241015T005233Z:3446d041-b64c-4553-86bc-d0b508ea167a X-Msedge-Ref: - - 'Ref A: 455C8CB98E674C6FA5D9A967853ECB8E Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:16Z' + - 'Ref A: 3FDFC08210014A46A2440C49FCB5A1C0 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:52:32Z' status: 200 OK code: 200 - duration: 494.0447ms - - id: 15 + duration: 592.1436ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1031,7 +1266,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1042,12 +1277,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1055,7 +1290,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 48 uncompressed: false body: "" headers: @@ -1066,37 +1301,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" + - "48" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCECB3A76BA055"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "1" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55817-701e-004e-3503-f50e04000000 + - f4a88150-201e-007c-419c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.5447ms - - id: 16 + duration: 88.3402ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1104,7 +1339,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1117,14 +1352,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=0-101 + - bytes=0-47 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -1132,9 +1367,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 48 uncompressed: false - body: "2024/08/23 02:22:16 Downloading source code...\r\n2024/08/23 02:22:16 Finished downloading source code\r\n" + body: "2024/10/15 00:52:33 Downloading source code...\r\n" headers: Accept-Ranges: - bytes @@ -1143,39 +1378,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" + - "48" Content-Range: - - bytes 0-101/102 + - bytes 0-47/48 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCECB3A76BA055"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "1" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5582e-701e-004e-4903-f50e04000000 + - f4a881c7-201e-007c-339c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 86.2277ms - - id: 17 + duration: 85.2029ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1183,7 +1418,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1194,12 +1429,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1207,7 +1442,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 48 uncompressed: false body: "" headers: @@ -1218,37 +1453,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "102" + - "48" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCECB3A76BA055"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "2" + - "1" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55834-701e-004e-4f03-f50e04000000 + - f4a8823a-201e-007c-229c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.7892ms - - id: 18 + duration: 76.7697ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1256,7 +1491,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1267,12 +1502,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1295,11 +1530,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:17 GMT + - Tue, 15 Oct 2024 00:52:34 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCECB3A7CB7D00"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1307,21 +1542,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f558cf-701e-004e-4503-f50e04000000 + - f4a8871b-201e-007c-539c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.4234ms - - id: 19 + duration: 78.3283ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1329,7 +1564,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1337,25 +1572,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Range: + - bytes=48-101 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 54 uncompressed: false - body: "" + body: "2024/10/15 00:52:33 Finished downloading source code\r\n" headers: Accept-Ranges: - bytes @@ -1364,37 +1603,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "54" + Content-Range: + - bytes 48-101/102 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:34 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCECB3A7CB7D00"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "2" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55995-701e-004e-6703-f50e04000000 + - f4a88788-201e-007c-3e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 87.2025ms - - id: 20 + status: 206 Partial Content + code: 206 + duration: 81.4382ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1402,7 +1643,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1410,29 +1651,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=102-789 + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: GET + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 102 uncompressed: false - body: "2024/08/23 02:22:17 Using acb_vol_7154bc78-c697-41db-997d-ee2fa55f9a01 as the home volume\n2024/08/23 02:22:17 Setting up Docker configuration...\n2024/08/23 02:22:17 Successfully set up Docker configuration\n2024/08/23 02:22:17 Logging in to registry: acrhdcsusgdiumec.azurecr.io\n2024/08/23 02:22:18 Successfully logged into acrhdcsusgdiumec.azurecr.io\n2024/08/23 02:22:18 Executing step ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2024/08/23 02:22:18 Scanning for dependencies...\n2024/08/23 02:22:18 Successfully scanned dependencies\n2024/08/23 02:22:18 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 @@ -1441,39 +1678,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "688" - Content-Range: - - bytes 102-789/790 + - "102" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:34 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCECB3A7CB7D00"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "2" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f559ab-701e-004e-7703-f50e04000000 + - f4a88804-201e-007c-319c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 91.3333ms - - id: 21 + status: 200 OK + code: 200 + duration: 92.0361ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1481,7 +1716,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1492,12 +1727,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1505,7 +1740,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 102 uncompressed: false body: "" headers: @@ -1516,37 +1751,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "102" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:35 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCECB3A7CB7D00"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "3" + - "2" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f559cb-701e-004e-0e03-f50e04000000 + - f4a88db3-201e-007c-2a9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.7651ms - - id: 22 + duration: 79.9025ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1554,7 +1789,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1565,12 +1800,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1578,7 +1813,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 820 uncompressed: false body: "" headers: @@ -1589,15 +1824,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "820" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:19 GMT + - Tue, 15 Oct 2024 00:52:36 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCECB3A930F51D"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 15 Oct 2024 00:52:36 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1605,21 +1840,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55a97-701e-004e-3c03-f50e04000000 + - f4a8933f-201e-007c-079c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 92.7348ms - - id: 23 + duration: 80.4358ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1627,7 +1862,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1635,165 +1870,19 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Range: + - bytes=102-819 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 790 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 - Content-Length: - - "790" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Fri, 23 Aug 2024 02:22:21 GMT - Etag: - - '"0x8DCC31A69A3BA12"' - Last-Modified: - - Fri, 23 Aug 2024 02:22:18 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: - - Fri, 23 Aug 2024 02:22:16 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Request-Id: - - 43f55b88-701e-004e-8003-f50e04000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.7673ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: eus2managed192.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Version: - - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1504 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 - Content-Length: - - "1504" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Fri, 23 Aug 2024 02:22:22 GMT - Etag: - - '"0x8DCC31A6B6ED58B"' - Last-Modified: - - Fri, 23 Aug 2024 02:22:21 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: - - Fri, 23 Aug 2024 02:22:16 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Request-Id: - - 43f55c2c-701e-004e-7303-f50e04000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.5655ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: eus2managed192.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.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=790-1503 - X-Ms-Version: - - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -1801,303 +1890,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 714 - uncompressed: false - body: "22: Pulling from library/node\n903681d87777: Pulling fs layer\n3cbbe86a28c2: Pulling fs layer\n6ed93aa58a52: Pulling fs layer\n787c78da4383: Pulling fs layer\n436462401185: Pulling fs layer\nd59df365b3bf: Pulling fs layer\n24505dd295d9: Pulling fs layer\ncafde2261323: Pulling fs layer\n787c78da4383: Waiting\n436462401185: Waiting\nd59df365b3bf: Waiting\n24505dd295d9: Waiting\ncafde2261323: Waiting\n3cbbe86a28c2: Verifying Checksum\n3cbbe86a28c2: Download complete\n903681d87777: Verifying Checksum\n903681d87777: Download complete\n6ed93aa58a52: Verifying Checksum\n6ed93aa58a52: Download complete\n436462401185: Verifying Checksum\n436462401185: Download complete\n787c78da4383: Verifying Checksum\n787c78da4383: Download complete\r\n" - headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 - Content-Length: - - "714" - Content-Range: - - bytes 790-1503/1504 - Content-Type: - - text/plain; charset=utf-8 - Date: - - Fri, 23 Aug 2024 02:22:22 GMT - Etag: - - '"0x8DCC31A6B6ED58B"' - Last-Modified: - - Fri, 23 Aug 2024 02:22:21 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: - - Fri, 23 Aug 2024 02:22:16 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Request-Id: - - 43f55c3b-701e-004e-7e03-f50e04000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 92.3782ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: eus2managed192.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Version: - - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1504 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 - Content-Length: - - "1504" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Fri, 23 Aug 2024 02:22:22 GMT - Etag: - - '"0x8DCC31A6B6ED58B"' - Last-Modified: - - Fri, 23 Aug 2024 02:22:21 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: - - Fri, 23 Aug 2024 02:22:16 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Request-Id: - - 43f55c45-701e-004e-0403-f50e04000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 88.6575ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: eus2managed192.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Version: - - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1504 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 - Content-Length: - - "1504" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Fri, 23 Aug 2024 02:22:23 GMT - Etag: - - '"0x8DCC31A6B6ED58B"' - Last-Modified: - - Fri, 23 Aug 2024 02:22:21 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: - - Fri, 23 Aug 2024 02:22:16 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Request-Id: - - 43f55cff-701e-004e-1b03-f50e04000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.5368ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: eus2managed192.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Version: - - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1504 - uncompressed: false - body: "" - headers: - Accept-Ranges: - - bytes - Content-Disposition: - - "" - Content-Encoding: - - utf-8 - Content-Length: - - "1504" - Content-Type: - - text/plain; charset=utf-8 - Date: - - Fri, 23 Aug 2024 02:22:24 GMT - Etag: - - '"0x8DCC31A6B6ED58B"' - Last-Modified: - - Fri, 23 Aug 2024 02:22:21 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: - - Fri, 23 Aug 2024 02:22:16 GMT - X-Ms-Lease-State: - - available - X-Ms-Lease-Status: - - unlocked - X-Ms-Request-Id: - - 43f55de4-701e-004e-4d03-f50e04000000 - X-Ms-Server-Encrypted: - - "true" - X-Ms-Version: - - "2023-11-03" - status: 200 OK - code: 200 - duration: 91.6979ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: eus2managed192.blob.core.windows.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/xml - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Version: - - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 1626 + content_length: 718 uncompressed: false - body: "" + body: "2024/10/15 00:52:33 Using acb_vol_c5b891c4-0754-408c-9c11-78564b337110 as the home volume\n2024/10/15 00:52:33 Setting up Docker configuration...\n2024/10/15 00:52:34 Successfully set up Docker configuration\n2024/10/15 00:52:34 Logging in to registry: acr4kpuurnmdpq2o.azurecr.io\n2024/10/15 00:52:34 Successfully logged into acr4kpuurnmdpq2o.azurecr.io\n2024/10/15 00:52:34 Executing step ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2024/10/15 00:52:34 Scanning for dependencies...\n2024/10/15 00:52:35 Successfully scanned dependencies\n2024/10/15 00:52:35 Launching container with name: build\nSending build context to Docker daemon 4.096kB\r\r\nStep 1/6 : FROM node:22\n22: Pulling from library/node\r\n" headers: Accept-Ranges: - bytes @@ -2106,37 +1901,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "718" + Content-Range: + - bytes 102-819/820 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:37 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3A930F51D"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:36 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "3" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55ead-701e-004e-7303-f50e04000000 + - f4a893a7-201e-007c-6e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.3816ms - - id: 30 + status: 206 Partial Content + code: 206 + duration: 78.1674ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -2144,7 +1941,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2152,29 +1949,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=1504-1625 + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: GET + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 122 + content_length: 820 uncompressed: false - body: "903681d87777: Pull complete\n3cbbe86a28c2: Pull complete\ncafde2261323: Verifying Checksum\ncafde2261323: Download complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -2183,39 +1976,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "122" - Content-Range: - - bytes 1504-1625/1626 + - "820" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:37 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3A930F51D"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:36 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "3" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55eb5-701e-004e-7a03-f50e04000000 + - f4a8941f-201e-007c-609c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 87.6201ms - - id: 31 + status: 200 OK + code: 200 + duration: 76.9997ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -2223,7 +2014,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2234,12 +2025,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2247,7 +2038,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 820 uncompressed: false body: "" headers: @@ -2258,37 +2049,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "820" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:38 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3A930F51D"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:36 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "3" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55ec2-701e-004e-0403-f50e04000000 + - f4a89904-201e-007c-169c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.6001ms - - id: 32 + duration: 79.6784ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2296,7 +2087,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2307,12 +2098,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2320,7 +2111,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 820 uncompressed: false body: "" headers: @@ -2331,37 +2122,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "820" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:26 GMT + - Tue, 15 Oct 2024 00:52:39 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3A930F51D"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:36 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "3" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55fcd-701e-004e-6b03-f50e04000000 + - f4a89ec4-201e-007c-3d9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.2659ms - - id: 33 + duration: 77.5737ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2369,7 +2160,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2380,12 +2171,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2393,7 +2184,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1699 uncompressed: false body: "" headers: @@ -2404,37 +2195,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:27 GMT + - Tue, 15 Oct 2024 00:52:40 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3AB379D51"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:39 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "4" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f560fd-701e-004e-8003-f50e04000000 + - f4a8a3fb-201e-007c-209c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.5453ms - - id: 34 + duration: 93.1743ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2442,7 +2233,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2450,25 +2241,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Range: + - bytes=820-1698 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 879 uncompressed: false - body: "" + body: "cdd62bf39133: Pulling fs layer\na47cff7f31e9: Pulling fs layer\na173f2aee8e9: Pulling fs layer\n01272fe8adba: Pulling fs layer\n2ef31a4711c4: Pulling fs layer\n99f93bb4f91a: Pulling fs layer\nf4327da62826: Pulling fs layer\n5e50751ac31b: Pulling fs layer\n01272fe8adba: Waiting\n2ef31a4711c4: Waiting\n99f93bb4f91a: Waiting\n5e50751ac31b: Waiting\nf4327da62826: Waiting\na47cff7f31e9: Verifying Checksum\na47cff7f31e9: Download complete\ncdd62bf39133: Verifying Checksum\ncdd62bf39133: Download complete\na173f2aee8e9: Verifying Checksum\na173f2aee8e9: Download complete\n2ef31a4711c4: Verifying Checksum\n2ef31a4711c4: Download complete\nf4327da62826: Verifying Checksum\nf4327da62826: Download complete\n5e50751ac31b: Verifying Checksum\n5e50751ac31b: Download complete\n99f93bb4f91a: Verifying Checksum\n99f93bb4f91a: Download complete\n01272fe8adba: Verifying Checksum\n01272fe8adba: Download complete\r\n" headers: Accept-Ranges: - bytes @@ -2477,37 +2272,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "879" + Content-Range: + - bytes 820-1698/1699 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:29 GMT + - Tue, 15 Oct 2024 00:52:40 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3AB379D51"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:39 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "4" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f561b1-701e-004e-1703-f50e04000000 + - f4a8a463-201e-007c-039c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 86.7682ms - - id: 35 + status: 206 Partial Content + code: 206 + duration: 78.1064ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2515,7 +2312,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2526,12 +2323,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2539,7 +2336,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1699 uncompressed: false body: "" headers: @@ -2550,37 +2347,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:30 GMT + - Tue, 15 Oct 2024 00:52:40 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3AB379D51"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:39 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "4" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f562cd-701e-004e-0403-f50e04000000 + - f4a8a4ca-201e-007c-619c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.9091ms - - id: 36 + duration: 82.4029ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2588,7 +2385,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2599,12 +2396,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2612,7 +2409,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1699 uncompressed: false body: "" headers: @@ -2623,37 +2420,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:31 GMT + - Tue, 15 Oct 2024 00:52:41 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCECB3AB379D51"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 15 Oct 2024 00:52:39 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "5" + - "4" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f563a5-701e-004e-2a03-f50e04000000 + - f4a8aa4e-201e-007c-1a9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.9742ms - - id: 37 + duration: 76.5872ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2661,7 +2458,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2672,12 +2469,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2685,7 +2482,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1813 + content_length: 1784 uncompressed: false body: "" headers: @@ -2696,37 +2493,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1813" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f564ac-701e-004e-1903-f50e04000000 + - f4a8af05-201e-007c-3b9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.3016ms - - id: 38 + duration: 78.1772ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2734,7 +2531,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2747,14 +2544,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=1626-1812 + - bytes=1699-1783 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -2762,9 +2559,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 187 + content_length: 85 uncompressed: false - body: "24505dd295d9: Verifying Checksum\n24505dd295d9: Download complete\n6ed93aa58a52: Pull complete\nd59df365b3bf: Verifying Checksum\nd59df365b3bf: Download complete\n787c78da4383: Pull complete\r\n" + body: "cdd62bf39133: Pull complete\na47cff7f31e9: Pull complete\na173f2aee8e9: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -2773,39 +2570,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "187" + - "85" Content-Range: - - bytes 1626-1812/1813 + - bytes 1699-1783/1784 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f564c7-701e-004e-2e03-f50e04000000 + - f4a8af72-201e-007c-239c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 90.9006ms - - id: 39 + duration: 77.3517ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2813,7 +2610,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2824,12 +2621,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2837,7 +2634,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1813 + content_length: 1784 uncompressed: false body: "" headers: @@ -2848,37 +2645,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1813" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f564e8-701e-004e-4b03-f50e04000000 + - f4a8afc8-201e-007c-729c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.6675ms - - id: 40 + duration: 76.5786ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2886,7 +2683,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2897,12 +2694,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2910,7 +2707,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1813 + content_length: 1784 uncompressed: false body: "" headers: @@ -2921,37 +2718,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1813" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:33 GMT + - Tue, 15 Oct 2024 00:52:44 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "6" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56662-701e-004e-1703-f50e04000000 + - f4a8b4df-201e-007c-5f9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.6732ms - - id: 41 + duration: 75.6896ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2959,7 +2756,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2970,12 +2767,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2983,7 +2780,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1784 uncompressed: false body: "" headers: @@ -2994,37 +2791,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1870" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:45 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f567cf-701e-004e-6d03-f50e04000000 + - f4a8ba66-201e-007c-2e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.438ms - - id: 42 + duration: 76.1205ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -3032,7 +2829,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3040,29 +2837,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=1813-1869 + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: GET + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 57 + content_length: 1784 uncompressed: false - body: "436462401185: Pull complete\nd59df365b3bf: Pull complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -3071,39 +2864,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "57" - Content-Range: - - bytes 1813-1869/1870 + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:46 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f567fa-701e-004e-1603-f50e04000000 + - f4a8c067-201e-007c-719c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 93.1363ms - - id: 43 + status: 200 OK + code: 200 + duration: 77.9404ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -3111,7 +2902,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3122,12 +2913,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3135,7 +2926,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1784 uncompressed: false body: "" headers: @@ -3146,37 +2937,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1870" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:47 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56816-701e-004e-3103-f50e04000000 + - f4a8c6ba-201e-007c-0e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 84.8644ms - - id: 44 + duration: 104.7707ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3184,7 +2975,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3195,12 +2986,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3208,7 +2999,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1784 uncompressed: false body: "" headers: @@ -3219,37 +3010,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1870" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:36 GMT + - Tue, 15 Oct 2024 00:52:48 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCECB3AD13E2CF"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 15 Oct 2024 00:52:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "5" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f569e6-701e-004e-5903-f50e04000000 + - f4a8cce8-201e-007c-0a9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.6852ms - - id: 45 + duration: 81.3565ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3257,7 +3048,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3268,12 +3059,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3281,7 +3072,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2312 + content_length: 1813 uncompressed: false body: "" headers: @@ -3292,37 +3083,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2312" + - "1813" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCECB3B0FA011E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56bd1-701e-004e-6a03-f50e04000000 + - f4a8d24d-201e-007c-2a9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.0409ms - - id: 46 + duration: 82.3637ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -3330,7 +3121,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3343,14 +3134,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=1870-2311 + - bytes=1784-1812 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -3358,9 +3149,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 29 uncompressed: false - body: "24505dd295d9: Pull complete\ncafde2261323: Pull complete\nDigest: sha256:54b7a9a6bb4ebfb623b5163581426b83f0ab39292e4df2c808ace95ab4cba94f\nStatus: Downloaded newer image for node:22\n ---> 675eb396b32b\nStep 2/6 : WORKDIR /app\n ---> Running in ce35d3b8e9fb\nRemoving intermediate container ce35d3b8e9fb\n ---> 32010fc1d586\nStep 3/6 : COPY package.json /app\n ---> a0fc5a6d55d1\nStep 4/6 : COPY index.js /app\n ---> a36d17057629\nStep 5/6 : EXPOSE 3000\r\n" + body: "01272fe8adba: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -3369,39 +3160,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "442" + - "29" Content-Range: - - bytes 1870-2311/2312 + - bytes 1784-1812/1813 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCECB3B0FA011E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56c00-701e-004e-1403-f50e04000000 + - f4a8d2b1-201e-007c-049c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 86.7559ms - - id: 47 + duration: 76.83ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -3409,7 +3200,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3420,12 +3211,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3433,7 +3224,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2312 + content_length: 1813 uncompressed: false body: "" headers: @@ -3444,37 +3235,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2312" + - "1813" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCECB3B0FA011E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56c26-701e-004e-3703-f50e04000000 + - f4a8d324-201e-007c-739c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.2035ms - - id: 48 + duration: 79.709ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -3482,7 +3273,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3493,12 +3284,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3506,7 +3297,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2312 + content_length: 1813 uncompressed: false body: "" headers: @@ -3517,37 +3308,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2312" + - "1813" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:38 GMT + - Tue, 15 Oct 2024 00:52:50 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCECB3B0FA011E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 15 Oct 2024 00:52:49 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56d8b-701e-004e-7c03-f50e04000000 + - f4a8d83d-201e-007c-5e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.7006ms - - id: 49 + duration: 77.8497ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -3555,7 +3346,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3566,12 +3357,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3579,7 +3370,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 1870 uncompressed: false body: "" headers: @@ -3590,37 +3381,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B26F93CA"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56ec7-701e-004e-0603-f50e04000000 + - f4a8dd15-201e-007c-1b9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.2201ms - - id: 50 + duration: 77.8732ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3628,7 +3419,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3641,14 +3432,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=2312-3034 + - bytes=1813-1869 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -3656,9 +3447,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 723 + content_length: 57 uncompressed: false - body: " ---> Running in ff87d5f593a5\nRemoving intermediate container ff87d5f593a5\n ---> 7aebe19e55d9\nStep 6/6 : CMD [\"node\", \"index.js\"]\n ---> Running in 8e99d958787e\nRemoving intermediate container 8e99d958787e\n ---> 4d63d447779e\nSuccessfully built 4d63d447779e\nSuccessfully tagged acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555\n2024/08/23 02:22:39 Successfully executed container: build\n2024/08/23 02:22:39 Executing step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2024/08/23 02:22:39 Pushing image: acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555, attempt 1\nThe push refers to repository [acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7]\r\n" + body: "2ef31a4711c4: Pull complete\n99f93bb4f91a: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -3667,39 +3458,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "723" + - "57" Content-Range: - - bytes 2312-3034/3035 + - bytes 1813-1869/1870 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B26F93CA"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56ef3-701e-004e-2f03-f50e04000000 + - f4a8dd67-201e-007c-679c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 86.644ms - - id: 51 + duration: 83.7535ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3707,7 +3498,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3718,12 +3509,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3731,7 +3522,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 1870 uncompressed: false body: "" headers: @@ -3742,37 +3533,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B26F93CA"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56f17-701e-004e-4903-f50e04000000 + - f4a8ddcc-201e-007c-499c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.0914ms - - id: 52 + duration: 78.9678ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3780,7 +3571,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3791,12 +3582,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3804,7 +3595,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 1870 uncompressed: false body: "" headers: @@ -3815,37 +3606,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:40 GMT + - Tue, 15 Oct 2024 00:52:53 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B26F93CA"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5705f-701e-004e-7803-f50e04000000 + - f4a8e26b-201e-007c-349c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.2373ms - - id: 53 + duration: 78.291ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3853,7 +3644,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3864,12 +3655,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3877,7 +3668,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 1870 uncompressed: false body: "" headers: @@ -3888,37 +3679,110 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:41 GMT + - Tue, 15 Oct 2024 00:52:54 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B26F93CA"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:51 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "7" + X-Ms-Blob-Type: + - AppendBlob + X-Ms-Creation-Time: + - Tue, 15 Oct 2024 00:52:33 GMT + X-Ms-Lease-State: + - available + X-Ms-Lease-Status: + - unlocked + X-Ms-Request-Id: + - f4a8e720-201e-007c-3b9c-1ea8ad000000 + X-Ms-Server-Encrypted: + - "true" + X-Ms-Version: + - "2023-11-03" + status: 200 OK + code: 200 + duration: 77.1425ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: eus2managed225.blob.core.windows.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/xml + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Version: + - "2023-11-03" + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 2312 + uncompressed: false + body: "" + headers: + Accept-Ranges: + - bytes + Content-Disposition: + - "" + Content-Encoding: + - utf-8 + Content-Length: + - "2312" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:52:55 GMT + Etag: + - '"0x8DCECB3B418320C"' + Last-Modified: + - Tue, 15 Oct 2024 00:52:54 GMT + Server: + - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 + X-Ms-Blob-Committed-Block-Count: + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f571af-701e-004e-2603-f50e04000000 + - f4a8ebe6-201e-007c-459c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.9807ms - - id: 54 + duration: 89.6888ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3926,7 +3790,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3934,25 +3798,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Range: + - bytes=1870-2311 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 442 uncompressed: false - body: "" + body: "f4327da62826: Pull complete\n5e50751ac31b: Pull complete\nDigest: sha256:69e667a79aa41ec0db50bc452a60e705ca16f35285eaf037ebe627a65a5cdf52\nStatus: Downloaded newer image for node:22\n ---> c3f8674f1794\nStep 2/6 : WORKDIR /app\n ---> Running in e049974e4854\nRemoving intermediate container e049974e4854\n ---> 3a52876c0dde\nStep 3/6 : COPY package.json /app\n ---> e4c7894fb198\nStep 4/6 : COPY index.js /app\n ---> 09bfecf66194\nStep 5/6 : EXPOSE 3000\r\n" headers: Accept-Ranges: - bytes @@ -3961,37 +3829,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "442" + Content-Range: + - bytes 1870-2311/2312 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:43 GMT + - Tue, 15 Oct 2024 00:52:55 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B418320C"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:54 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57362-701e-004e-3c03-f50e04000000 + - f4a8ec3e-201e-007c-1d9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 91.9096ms - - id: 55 + status: 206 Partial Content + code: 206 + duration: 78.2926ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3999,7 +3869,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4010,12 +3880,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4023,7 +3893,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 2312 uncompressed: false body: "" headers: @@ -4034,37 +3904,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "2312" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:55 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCECB3B418320C"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 15 Oct 2024 00:52:54 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "9" + - "8" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57542-701e-004e-2e03-f50e04000000 + - f4a8ec83-201e-007c-619c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.3649ms - - id: 56 + duration: 76.2538ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -4072,7 +3942,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4083,12 +3953,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4096,7 +3966,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4107,37 +3977,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:45 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f576ca-701e-004e-0c03-f50e04000000 + - f4a8f115-201e-007c-379c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.2034ms - - id: 57 + duration: 76.4217ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4145,7 +4015,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4158,14 +4028,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=3035-3536 + - bytes=2312-3034 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -4173,9 +4043,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 723 uncompressed: false - body: "1618b9cdf7ff: Preparing\nce22804f78a6: Preparing\n3ebbda6c2200: Preparing\nfdf5ce66ec59: Preparing\n441cf1c442f5: Preparing\n42073a4c3c76: Preparing\n7aaeaeabc9cf: Preparing\n28e03088bc15: Preparing\n0d80db6a0977: Preparing\n916d866d5b0d: Preparing\n8f4ceb8cc1a2: Preparing\n7aaeaeabc9cf: Waiting\n28e03088bc15: Waiting\n0d80db6a0977: Waiting\n916d866d5b0d: Waiting\n8f4ceb8cc1a2: Waiting\n42073a4c3c76: Waiting\n1618b9cdf7ff: Pushed\nce22804f78a6: Pushed\nfdf5ce66ec59: Pushed\n3ebbda6c2200: Pushed\n441cf1c442f5: Pushed\r\n" + body: " ---> Running in 6b56d2fdc4d8\nRemoving intermediate container 6b56d2fdc4d8\n ---> 17854e30303d\nStep 6/6 : CMD [\"node\", \"index.js\"]\n ---> Running in 0638f9a85930\nRemoving intermediate container 0638f9a85930\n ---> c0230a8d00f5\nSuccessfully built c0230a8d00f5\nSuccessfully tagged acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349\n2024/10/15 00:52:56 Successfully executed container: build\n2024/10/15 00:52:56 Executing step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2024/10/15 00:52:56 Pushing image: acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349, attempt 1\nThe push refers to repository [acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570]\r\n" headers: Accept-Ranges: - bytes @@ -4184,39 +4054,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "502" + - "723" Content-Range: - - bytes 3035-3536/3537 + - bytes 2312-3034/3035 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:45 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f576dd-701e-004e-1e03-f50e04000000 + - f4a8f168-201e-007c-069c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 87.5272ms - - id: 58 + duration: 77.4615ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -4224,7 +4094,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4235,12 +4105,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4248,7 +4118,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4259,37 +4129,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:45 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f576eb-701e-004e-2b03-f50e04000000 + - f4a8f1d6-201e-007c-709c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.5814ms - - id: 59 + duration: 84.3287ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -4297,7 +4167,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4308,12 +4178,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4321,7 +4191,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4332,37 +4202,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:46 GMT + - Tue, 15 Oct 2024 00:52:57 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57803-701e-004e-1803-f50e04000000 + - f4a8f6d6-201e-007c-1f9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.913ms - - id: 60 + duration: 76.5034ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -4370,7 +4240,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4381,12 +4251,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4394,7 +4264,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4405,37 +4275,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:47 GMT + - Tue, 15 Oct 2024 00:52:58 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f578cf-701e-004e-4303-f50e04000000 + - f4a8fc29-201e-007c-679c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.5359ms - - id: 61 + duration: 76.6658ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -4443,7 +4313,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4454,12 +4324,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4467,7 +4337,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4478,37 +4348,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:48 GMT + - Tue, 15 Oct 2024 00:52:59 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f579ff-701e-004e-4503-f50e04000000 + - f4a90179-201e-007c-099c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.6043ms - - id: 62 + duration: 78.8969ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -4516,7 +4386,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4527,12 +4397,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4540,7 +4410,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4551,37 +4421,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:49 GMT + - Tue, 15 Oct 2024 00:53:00 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57b09-701e-004e-2703-f50e04000000 + - f4a90702-201e-007c-559c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.7262ms - - id: 63 + duration: 77.0965ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -4589,7 +4459,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4600,12 +4470,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4613,7 +4483,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3035 uncompressed: false body: "" headers: @@ -4624,37 +4494,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:50 GMT + - Tue, 15 Oct 2024 00:53:02 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "10" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57bdc-701e-004e-5e03-f50e04000000 + - f4a90ca6-201e-007c-449c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.4098ms - - id: 64 + duration: 77.3902ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -4662,7 +4532,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4673,12 +4543,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4686,7 +4556,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3035 uncompressed: false body: "" headers: @@ -4697,37 +4567,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:51 GMT + - Tue, 15 Oct 2024 00:53:03 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57cbc-701e-004e-1c03-f50e04000000 + - f4a91280-201e-007c-669c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.7834ms - - id: 65 + duration: 97.6403ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -4735,7 +4605,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4743,29 +4613,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3537-3579 + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: GET + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 43 + content_length: 3035 uncompressed: false - body: "7aaeaeabc9cf: Pushed\n916d866d5b0d: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -4774,39 +4640,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "43" - Content-Range: - - bytes 3537-3579/3580 + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:53:04 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57ccc-701e-004e-2a03-f50e04000000 + - f4a91884-201e-007c-389c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 132.7721ms - - id: 66 + status: 200 OK + code: 200 + duration: 80.3737ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -4814,7 +4678,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4825,12 +4689,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4838,7 +4702,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3035 uncompressed: false body: "" headers: @@ -4849,37 +4713,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:53:05 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57ce7-701e-004e-4003-f50e04000000 + - f4a91e00-201e-007c-129c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.4822ms - - id: 67 + duration: 78.404ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -4887,7 +4751,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4898,12 +4762,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4911,7 +4775,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3035 uncompressed: false body: "" headers: @@ -4922,37 +4786,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:53 GMT + - Tue, 15 Oct 2024 00:53:06 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57d8c-701e-004e-4503-f50e04000000 + - f4a9237b-201e-007c-589c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.4343ms - - id: 68 + duration: 97.2473ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -4960,7 +4824,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4971,12 +4835,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4984,7 +4848,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3035 uncompressed: false body: "" headers: @@ -4995,37 +4859,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:54 GMT + - Tue, 15 Oct 2024 00:53:07 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57e6d-701e-004e-7203-f50e04000000 + - f4a927de-201e-007c-7b9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.2035ms - - id: 69 + duration: 77.5307ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -5033,7 +4897,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5044,12 +4908,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5057,7 +4921,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3035 uncompressed: false body: "" headers: @@ -5068,37 +4932,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:55 GMT + - Tue, 15 Oct 2024 00:53:08 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57f4c-701e-004e-2c03-f50e04000000 + - f4a92c40-201e-007c-3b9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.9483ms - - id: 70 + duration: 76.5126ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -5106,7 +4970,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5117,12 +4981,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5130,7 +4994,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3035 uncompressed: false body: "" headers: @@ -5141,37 +5005,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3035" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:56 GMT + - Tue, 15 Oct 2024 00:53:09 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCECB3B559CFBB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 15 Oct 2024 00:52:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "9" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5801c-701e-004e-5503-f50e04000000 + - f4a93123-201e-007c-7c9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.7587ms - - id: 71 + duration: 76.5452ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +5043,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5190,12 +5054,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5203,7 +5067,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3579 uncompressed: false body: "" headers: @@ -5214,37 +5078,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3579" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:10 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BD521B09"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f580e7-701e-004e-6403-f50e04000000 + - f4a93620-201e-007c-549c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.2827ms - - id: 72 + duration: 77.3506ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -5252,7 +5116,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5265,14 +5129,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=3580-3601 + - bytes=3035-3578 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -5280,9 +5144,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 544 uncompressed: false - body: "0d80db6a0977: Pushed\r\n" + body: "12cb8b12ce0e: Preparing\nf3583a03fd99: Preparing\nad7efd507e99: Preparing\n80f1463515dd: Preparing\n393ef69db764: Preparing\n9b08d8a711d5: Preparing\n9992f019ad67: Preparing\n2bce433c3a29: Preparing\nf91dc7a486d9: Preparing\n3e14a6961052: Preparing\nd50132f2fe78: Preparing\n9b08d8a711d5: Waiting\n9992f019ad67: Waiting\n2bce433c3a29: Waiting\nf91dc7a486d9: Waiting\nd50132f2fe78: Waiting\n3e14a6961052: Waiting\n12cb8b12ce0e: Pushed\nad7efd507e99: Pushed\nf3583a03fd99: Pushed\n80f1463515dd: Pushed\n393ef69db764: Pushed\n9992f019ad67: Pushed\n3e14a6961052: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -5291,39 +5155,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "22" + - "544" Content-Range: - - bytes 3580-3601/3602 + - bytes 3035-3578/3579 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:10 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BD521B09"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f580fd-701e-004e-7603-f50e04000000 + - f4a93686-201e-007c-389c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 101.0272ms - - id: 73 + duration: 79.307ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -5331,7 +5195,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5342,12 +5206,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5355,7 +5219,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3579 uncompressed: false body: "" headers: @@ -5366,37 +5230,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3579" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:10 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BD521B09"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58115-701e-004e-0c03-f50e04000000 + - f4a936da-201e-007c-079c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 92.5011ms - - id: 74 + duration: 76.8848ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -5404,7 +5268,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5415,12 +5279,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5428,7 +5292,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3579 uncompressed: false body: "" headers: @@ -5439,37 +5303,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3579" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:59 GMT + - Tue, 15 Oct 2024 00:53:12 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BD521B09"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f581bb-701e-004e-1503-f50e04000000 + - f4a93be2-201e-007c-489c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.5336ms - - id: 75 + duration: 78.758ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -5477,7 +5341,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5488,12 +5352,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5501,7 +5365,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3579 uncompressed: false body: "" headers: @@ -5512,37 +5376,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3579" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:00 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BD521B09"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:09 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5834d-701e-004e-7c03-f50e04000000 + - f4a940b7-201e-007c-549c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.7588ms - - id: 76 + duration: 80.2483ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -5550,7 +5414,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5561,12 +5425,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5574,7 +5438,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -5585,37 +5449,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:01 GMT + - Tue, 15 Oct 2024 00:53:14 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f584f2-701e-004e-7003-f50e04000000 + - f4a94861-201e-007c-489c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.5716ms - - id: 77 + duration: 76.8481ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -5623,7 +5487,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5631,25 +5495,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Range: + - bytes=3579-3600 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 22 uncompressed: false - body: "" + body: "d50132f2fe78: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -5658,37 +5526,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "22" + Content-Range: + - bytes 3579-3600/3601 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:02 GMT + - Tue, 15 Oct 2024 00:53:14 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f585ed-701e-004e-4903-f50e04000000 + - f4a948ef-201e-007c-169c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 87.5382ms - - id: 78 + status: 206 Partial Content + code: 206 + duration: 80.552ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -5696,7 +5566,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5707,12 +5577,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5720,7 +5590,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -5731,37 +5601,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:03 GMT + - Tue, 15 Oct 2024 00:53:14 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f586f8-701e-004e-3103-f50e04000000 + - f4a9499a-201e-007c-789c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.8116ms - - id: 79 + duration: 77.666ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -5769,7 +5639,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5780,12 +5650,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5793,7 +5663,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -5804,37 +5674,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:04 GMT + - Tue, 15 Oct 2024 00:53:15 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f587e7-701e-004e-7b03-f50e04000000 + - f4a9516e-201e-007c-4f9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.2613ms - - id: 80 + duration: 75.881ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -5842,7 +5712,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5853,12 +5723,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5866,7 +5736,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -5877,37 +5747,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:05 GMT + - Tue, 15 Oct 2024 00:53:16 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58902-701e-004e-7503-f50e04000000 + - f4a959b1-201e-007c-499c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.9704ms - - id: 81 + duration: 84.0342ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -5915,7 +5785,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5926,12 +5796,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5939,7 +5809,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -5950,37 +5820,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:06 GMT + - Tue, 15 Oct 2024 00:53:17 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58a62-701e-004e-2403-f50e04000000 + - f4a96294-201e-007c-379c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.0331ms - - id: 82 + duration: 81.7909ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -5988,7 +5858,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5999,12 +5869,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6012,7 +5882,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6023,37 +5893,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:07 GMT + - Tue, 15 Oct 2024 00:53:18 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58b4f-701e-004e-5c03-f50e04000000 + - f4a96b97-201e-007c-149c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 92.8335ms - - id: 83 + duration: 76.3297ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -6061,7 +5931,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6072,12 +5942,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6085,7 +5955,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6096,37 +5966,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:08 GMT + - Tue, 15 Oct 2024 00:53:19 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58c08-701e-004e-7603-f50e04000000 + - f4a975cd-201e-007c-529c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.7725ms - - id: 84 + duration: 75.7102ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -6134,7 +6004,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6145,12 +6015,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6158,7 +6028,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6169,37 +6039,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:10 GMT + - Tue, 15 Oct 2024 00:53:20 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58cd0-701e-004e-1f03-f50e04000000 + - f4a980c0-201e-007c-5e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.232ms - - id: 85 + duration: 76.9932ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -6207,7 +6077,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6218,12 +6088,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6231,7 +6101,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6242,37 +6112,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:11 GMT + - Tue, 15 Oct 2024 00:53:21 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58da4-701e-004e-5003-f50e04000000 + - f4a98c91-201e-007c-2b9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.5389ms - - id: 86 + duration: 77.9213ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -6280,7 +6150,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6291,12 +6161,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6304,7 +6174,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6315,37 +6185,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:12 GMT + - Tue, 15 Oct 2024 00:53:23 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58e50-701e-004e-6403-f50e04000000 + - f4a998c9-201e-007c-349c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 94.5186ms - - id: 87 + duration: 77.6792ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -6353,7 +6223,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6364,12 +6234,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6377,7 +6247,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6388,37 +6258,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:13 GMT + - Tue, 15 Oct 2024 00:53:24 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58f01-701e-004e-7103-f50e04000000 + - f4a99f9a-201e-007c-469c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.4894ms - - id: 88 + duration: 87.9838ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -6426,7 +6296,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6437,12 +6307,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6450,7 +6320,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6461,37 +6331,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:14 GMT + - Tue, 15 Oct 2024 00:53:25 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5901f-701e-004e-1803-f50e04000000 + - f4a9a5f5-201e-007c-3e9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.5394ms - - id: 89 + duration: 78.5339ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -6499,7 +6369,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6510,12 +6380,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6523,7 +6393,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3601 uncompressed: false body: "" headers: @@ -6534,37 +6404,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:15 GMT + - Tue, 15 Oct 2024 00:53:26 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "12" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f59102-701e-004e-4903-f50e04000000 + - f4a9abfc-201e-007c-099c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.401ms - - id: 90 + duration: 76.4918ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -6572,7 +6442,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6583,12 +6453,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6596,7 +6466,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3601 uncompressed: false body: "" headers: @@ -6607,37 +6477,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:27 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f591f5-701e-004e-0e03-f50e04000000 + - f4a9b1eb-201e-007c-419c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.0481ms - - id: 91 + duration: 79.1112ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -6645,7 +6515,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6653,29 +6523,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3602-3645 + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: GET + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 3601 uncompressed: false - body: "42073a4c3c76: Pushed\n8f4ceb8cc1a2: Pushed\n\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -6684,39 +6550,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "44" - Content-Range: - - bytes 3602-3645/3646 + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:28 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f59220-701e-004e-3503-f50e04000000 + - f4a9b80b-201e-007c-249c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 86.7201ms - - id: 92 + status: 200 OK + code: 200 + duration: 78.9431ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -6724,7 +6588,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6735,12 +6599,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6748,7 +6612,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3601 uncompressed: false body: "" headers: @@ -6759,37 +6623,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:29 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f59241-701e-004e-5203-f50e04000000 + - f4a9bda1-201e-007c-069c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.5453ms - - id: 93 + duration: 78.8001ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -6797,7 +6661,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6808,12 +6672,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6821,7 +6685,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3601 uncompressed: false body: "" headers: @@ -6832,37 +6696,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3601" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:17 GMT + - Tue, 15 Oct 2024 00:53:30 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCECB3BFAFD02A"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:13 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "11" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5930e-701e-004e-0603-f50e04000000 + - f4a9c41e-201e-007c-4d9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.1192ms - - id: 94 + duration: 77.7547ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -6870,7 +6734,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6881,12 +6745,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6894,7 +6758,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3665 uncompressed: false body: "" headers: @@ -6905,37 +6769,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3665" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:19 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCECB3CA510405"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "13" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f593ed-701e-004e-4503-f50e04000000 + - f4a9ca7f-201e-007c-049c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.9553ms - - id: 95 + duration: 78.6ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -6943,7 +6807,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6951,25 +6815,29 @@ interactions: headers: Accept: - application/xml + Accept-Encoding: + - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Range: + - bytes=3601-3664 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: HEAD + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3668 + content_length: 64 uncompressed: false - body: "" + body: "f91dc7a486d9: Pushed\n9b08d8a711d5: Pushed\n2bce433c3a29: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -6978,37 +6846,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3668" + - "64" + Content-Range: + - bytes 3601-3664/3665 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Etag: - - '"0x8DCC31A8E339D49"' + - '"0x8DCECB3CA510405"' Last-Modified: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f594bf-701e-004e-7b03-f50e04000000 + - f4a9cb13-201e-007c-149c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 93.1691ms - - id: 96 + status: 206 Partial Content + code: 206 + duration: 81.0519ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -7016,7 +6886,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7024,29 +6894,25 @@ interactions: headers: Accept: - application/xml - Accept-Encoding: - - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3646-3667 + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 - method: GET + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + method: HEAD response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 3665 uncompressed: false - body: "28e03088bc15: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -7055,39 +6921,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "22" - Content-Range: - - bytes 3646-3667/3668 + - "3665" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Etag: - - '"0x8DCC31A8E339D49"' + - '"0x8DCECB3CA510405"' Last-Modified: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f594ce-701e-004e-0803-f50e04000000 + - f4a9cb94-201e-007c-109c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 93.5527ms - - id: 97 + status: 200 OK + code: 200 + duration: 79.5951ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -7095,7 +6959,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7106,12 +6970,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -7119,7 +6983,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3668 + content_length: 3665 uncompressed: false body: "" headers: @@ -7130,37 +6994,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3668" + - "3665" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 15 Oct 2024 00:53:33 GMT Etag: - - '"0x8DCC31A8E339D49"' + - '"0x8DCECB3CA510405"' Last-Modified: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 15 Oct 2024 00:53:31 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "12" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f594da-701e-004e-1003-f50e04000000 + - f4a9d270-201e-007c-2c9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.6976ms - - id: 98 + duration: 76.7479ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -7168,7 +7032,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7179,12 +7043,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -7192,7 +7056,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 4750 + content_length: 4747 uncompressed: false body: "" headers: @@ -7203,23 +7067,23 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "4750" + - "4747" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:21 GMT + - Tue, 15 Oct 2024 00:53:34 GMT Etag: - - '"0x8DCC31A8F475A1F"' + - '"0x8DCECB3CB664547"' Last-Modified: - - Fri, 23 Aug 2024 02:23:22 GMT + - Tue, 15 Oct 2024 00:53:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "16" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -7227,15 +7091,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 43f59582-701e-004e-2103-f50e04000000 + - f4a9d8a4-201e-007c-0d9c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.6057ms - - id: 99 + duration: 78.9942ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -7243,7 +7107,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7256,14 +7120,14 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Range: - - bytes=3668-4749 + - bytes=3665-4746 X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -7273,7 +7137,7 @@ interactions: trailer: {} content_length: 1082 uncompressed: false - body: "azd-deploy-1724379555: digest: sha256:b16ecfa900d2c1beb2d1ec28ef5f2760051acc4691322f44372e847565208927 size: 2624\n2024/08/23 02:23:20 Successfully pushed image: acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555\n2024/08/23 02:23:20 Step ID: build marked as successful (elapsed time in seconds: 21.107229)\n2024/08/23 02:23:20 Populating digests for step ID: build...\n2024/08/23 02:23:21 Successfully populated digests for step ID: build\n2024/08/23 02:23:21 Step ID: push marked as successful (elapsed time in seconds: 41.726780)\n2024/08/23 02:23:21 The following dependencies were found:\n2024/08/23 02:23:21 \n- image:\n registry: acrhdcsusgdiumec.azurecr.io\n repository: webapp/app-azdtest-w1574a7\n tag: azd-deploy-1724379555\n digest: sha256:b16ecfa900d2c1beb2d1ec28ef5f2760051acc4691322f44372e847565208927\n runtime-dependency:\n registry: registry.hub.docker.com\n repository: library/node\n tag: \"22\"\n digest: sha256:54b7a9a6bb4ebfb623b5163581426b83f0ab39292e4df2c808ace95ab4cba94f\n git: {}\n\n\r\nRun ID: ch1 was successful after 1m6s\r\n" + body: "azd-deploy-1728953349: digest: sha256:d18ca7add5f790f93c3678048c902524153358b2d83d3c930d420cb82bc07730 size: 2624\n2024/10/15 00:53:32 Successfully pushed image: acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349\n2024/10/15 00:53:32 Step ID: build marked as successful (elapsed time in seconds: 21.209806)\n2024/10/15 00:53:32 Populating digests for step ID: build...\n2024/10/15 00:53:33 Successfully populated digests for step ID: build\n2024/10/15 00:53:33 Step ID: push marked as successful (elapsed time in seconds: 36.249371)\n2024/10/15 00:53:33 The following dependencies were found:\n2024/10/15 00:53:33 \n- image:\n registry: acr4kpuurnmdpq2o.azurecr.io\n repository: webapp/app-azdtest-wd5d570\n tag: azd-deploy-1728953349\n digest: sha256:d18ca7add5f790f93c3678048c902524153358b2d83d3c930d420cb82bc07730\n runtime-dependency:\n registry: registry.hub.docker.com\n repository: library/node\n tag: \"22\"\n digest: sha256:69e667a79aa41ec0db50bc452a60e705ca16f35285eaf037ebe627a65a5cdf52\n git: {}\n\n\r\nRun ID: ch1 was successful after 1m1s\r\n" headers: Accept-Ranges: - bytes @@ -7284,23 +7148,23 @@ interactions: Content-Length: - "1082" Content-Range: - - bytes 3668-4749/4750 + - bytes 3665-4746/4747 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:21 GMT + - Tue, 15 Oct 2024 00:53:34 GMT Etag: - - '"0x8DCC31A8F475A1F"' + - '"0x8DCECB3CB664547"' Last-Modified: - - Fri, 23 Aug 2024 02:23:22 GMT + - Tue, 15 Oct 2024 00:53:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "16" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -7308,15 +7172,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 43f59594-701e-004e-3103-f50e04000000 + - f4a9d911-201e-007c-799c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 92.6921ms - - id: 100 + duration: 77.3667ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -7324,7 +7188,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed225.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7335,12 +7199,12 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Version: - "2023-11-03" - url: https://eus2managed192.blob.core.windows.net:443/f570554b08d2426a8b5950e32748651f-amdlkui4rt/logs/ch1/rawtext.log?se=2024-08-23T03%3A32%3A16Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 + url: https://eus2managed225.blob.core.windows.net:443/8708e294301f4af8a2cd44fab6a720d9-jha4bodzs2/logs/ch1/rawtext.log?se=2024-10-15T02%3A02%3A33Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -7348,7 +7212,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 4750 + content_length: 4747 uncompressed: false body: "" headers: @@ -7359,23 +7223,23 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "4750" + - "4747" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:21 GMT + - Tue, 15 Oct 2024 00:53:34 GMT Etag: - - '"0x8DCC31A8F475A1F"' + - '"0x8DCECB3CB664547"' Last-Modified: - - Fri, 23 Aug 2024 02:23:22 GMT + - Tue, 15 Oct 2024 00:53:33 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "16" + - "14" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 15 Oct 2024 00:52:33 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -7383,15 +7247,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 43f595af-701e-004e-4803-f50e04000000 + - f4a9d993-201e-007c-719c-1ea8ad000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.903ms - - id: 101 + duration: 82.3109ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -7412,10 +7276,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armcontainerregistry/v0.6.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armcontainerregistry/v0.6.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/runs/ch1?api-version=2019-06-01-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/runs/ch1?api-version=2019-06-01-preview method: GET response: proto: HTTP/2.0 @@ -7423,18 +7287,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 722 uncompressed: false - body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Succeeded","lastUpdatedTime":"2024-08-23T02:23:22+00:00","runType":"QuickRun","createTime":"2024-08-23T02:22:15.7648085+00:00","startTime":"2024-08-23T02:22:16.069127+00:00","finishTime":"2024-08-23T02:23:22.6176328+00:00","outputImages":[{"registry":"acrhdcsusgdiumec.azurecr.io","repository":"webapp/app-azdtest-w1574a7","tag":"azd-deploy-1724379555","digest":"sha256:b16ecfa900d2c1beb2d1ec28ef5f2760051acc4691322f44372e847565208927"}],"platform":{"os":"Linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:22:15.4160843+00:00"}}' + body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Running","lastUpdatedTime":"2024-10-15T00:52:32+00:00","runType":"QuickRun","createTime":"2024-10-15T00:52:32.6705169+00:00","startTime":"2024-10-15T00:52:32.9847328+00:00","platform":{"os":"Linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:52:32.3589225+00:00"}}' headers: Cache-Control: - no-cache Content-Length: - - "985" + - "722" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:23 GMT + - Tue, 15 Oct 2024 00:53:34 GMT Expires: - "-1" Pragma: @@ -7446,19 +7310,90 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 68f84c71-19f7-4373-b86d-6abb3ba18baf + - 77bb70b5-d4c5-4324-9075-9f45d31e3fa8 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022323Z:b59226b7-8b27-43fc-90cc-d25322b16d67 + - WESTUS2:20241015T005334Z:75c91efb-c65a-4261-bea9-810fd8408f5d X-Msedge-Ref: - - 'Ref A: 679871CF8B3B4C709D681D1FF72079A6 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:22Z' + - 'Ref A: D1B2EE84B7A34FE2AE94952839625C72 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:34Z' status: 200 OK code: 200 - duration: 697.7717ms - - id: 102 + duration: 369.1005ms + - id: 100 + 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/v0.6.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/runs/ch1?api-version=2019-06-01-preview + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 988 + uncompressed: false + body: '{"type":"Microsoft.ContainerRegistry/registries/runs","properties":{"runId":"ch1","status":"Succeeded","lastUpdatedTime":"2024-10-15T00:53:35+00:00","runType":"QuickRun","createTime":"2024-10-15T00:52:32.6705169+00:00","startTime":"2024-10-15T00:52:32.9847328+00:00","finishTime":"2024-10-15T00:53:35.5948144+00:00","outputImages":[{"registry":"acr4kpuurnmdpq2o.azurecr.io","repository":"webapp/app-azdtest-wd5d570","tag":"azd-deploy-1728953349","digest":"sha256:d18ca7add5f790f93c3678048c902524153358b2d83d3c930d420cb82bc07730"}],"platform":{"os":"Linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:52:32.3589225+00:00"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "988" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:53: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: + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 858dec02-345e-42f4-9a20-2631a17aff0d + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T005336Z:d40101cd-b908-4a48-8ac4-ec07304ca412 + X-Msedge-Ref: + - 'Ref A: 48FB4F4AAFCD47EFA8531472519B91EA Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:35Z' + status: 200 OK + code: 200 + duration: 439.4878ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -7479,10 +7414,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec?api-version=2023-11-02-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7490,20 +7425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3725 + content_length: 3735 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerapps/app-hdcsusgdiumec","name":"app-hdcsusgdiumec","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:21:24.3770256","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:21:24.3770256"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","4.152.1.153"],"latestRevisionName":"app-hdcsusgdiumec--ddddtms","latestReadyRevisionName":"app-hdcsusgdiumec--ddddtms","latestRevisionFqdn":"app-hdcsusgdiumec--ddddtms.icypebble-38e1316e.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-hdcsusgdiumec.icypebble-38e1316e.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,"targetPortHttpScheme":null},"registries":[{"server":"acrhdcsusgdiumec.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"nginx","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/containerApps/app-hdcsusgdiumec/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4","clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerapps/app-4kpuurnmdpq2o","name":"app-4kpuurnmdpq2o","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:51:51.5925231","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:51:51.5925231"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.211.131.63"],"latestRevisionName":"app-4kpuurnmdpq2o--14v28km","latestReadyRevisionName":"app-4kpuurnmdpq2o--14v28km","latestRevisionFqdn":"app-4kpuurnmdpq2o--14v28km.happydesert-ec3c7320.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-4kpuurnmdpq2o.happydesert-ec3c7320.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,"targetPortHttpScheme":null},"registries":[{"server":"acr4kpuurnmdpq2o.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"nginx","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/containerApps/app-4kpuurnmdpq2o/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9","clientId":"69a807c8-bc07-46b2-8637-70335088ccb5"}}}}' 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 Cache-Control: - no-cache Content-Length: - - "3725" + - "3735" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:24 GMT + - Tue, 15 Oct 2024 00:53:36 GMT Expires: - "-1" Pragma: @@ -7517,21 +7452,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 0b000eff-a394-43f9-9b76-de8b0aef10a5 + - b74f70c3-b8f5-4a73-a692-fc55c0cfd981 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022324Z:0b000eff-a394-43f9-9b76-de8b0aef10a5 + - WESTUS2:20241015T005336Z:b74f70c3-b8f5-4a73-a692-fc55c0cfd981 X-Msedge-Ref: - - 'Ref A: 775E0AADAEF54EF1AEA449F3FF2C06C1 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:24Z' + - 'Ref A: 35D7A74176A64EBFBC3DAE1CC0BADC91 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:36Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 581.2746ms - - id: 103 + duration: 547.0303ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -7552,10 +7489,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec/revisions/app-hdcsusgdiumec--ddddtms?api-version=2023-11-02-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o/revisions/app-4kpuurnmdpq2o--14v28km?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7563,20 +7500,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 826 + content_length: 828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec/revisions/app-hdcsusgdiumec--ddddtms","name":"app-hdcsusgdiumec--ddddtms","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2024-08-23T02:21:31+00:00","fqdn":"app-hdcsusgdiumec--ddddtms.icypebble-38e1316e.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,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o/revisions/app-4kpuurnmdpq2o--14v28km","name":"app-4kpuurnmdpq2o--14v28km","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2024-10-15T00:51:59+00:00","fqdn":"app-4kpuurnmdpq2o--14v28km.happydesert-ec3c7320.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,"rules":null},"volumes":null,"serviceBinds":null},"active":true,"replicas":1,"trafficWeight":100,"healthState":"None","provisioningState":"Provisioned","runningState":"Activating"}}' 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 Cache-Control: - no-cache Content-Length: - - "826" + - "828" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:25 GMT + - Tue, 15 Oct 2024 00:53:37 GMT Expires: - "-1" Pragma: @@ -7590,32 +7527,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 2a465796-f5dd-4235-a413-cfcc427a5dd3 + - e9c2e32b-5489-4e32-a298-eb64d807a161 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022325Z:2a465796-f5dd-4235-a413-cfcc427a5dd3 + - WESTUS2:20241015T005338Z:e9c2e32b-5489-4e32-a298-eb64d807a161 X-Msedge-Ref: - - 'Ref A: 6FF7D206B45444BFA4314D154B990878 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:24Z' + - 'Ref A: FADE70FB13894D71ABF96D50585358EE Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:36Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 832.4236ms - - id: 104 + duration: 1.2015464s + - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3421 + content_length: 3431 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerapps/app-hdcsusgdiumec","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170","principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4"}}},"location":"East US 2","name":"app-hdcsusgdiumec","properties":{"configuration":{"activeRevisionsMode":"Single","ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io","targetPort":8080,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Http"},"maxInactiveRevisions":100,"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec","passwordSecretRef":"","server":"acrhdcsusgdiumec.azurecr.io","username":""}]},"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/containerApps/app-hdcsusgdiumec/eventstream","latestReadyRevisionName":"app-hdcsusgdiumec--ddddtms","latestRevisionFqdn":"app-hdcsusgdiumec--ddddtms.icypebble-38e1316e.eastus2.azurecontainerapps.io","latestRevisionName":"app-hdcsusgdiumec--ddddtms","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","4.152.1.153"],"provisioningState":"Succeeded","template":{"containers":[{"image":"acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555","name":"app","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1724379555","scale":{"maxReplicas":10,"minReplicas":1}},"workloadProfileName":"consumption"},"systemData":{"createdAt":"2024-08-23T02:21:24.3770256Z","createdBy":"wabrez@microsoft.com","createdByType":"User","lastModifiedAt":"2024-08-23T02:21:24.3770256Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"},"type":"Microsoft.App/containerApps"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerapps/app-4kpuurnmdpq2o","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"clientId":"69a807c8-bc07-46b2-8637-70335088ccb5","principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9"}}},"location":"East US 2","name":"app-4kpuurnmdpq2o","properties":{"configuration":{"activeRevisionsMode":"Single","ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io","targetPort":8080,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Http"},"maxInactiveRevisions":100,"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o","passwordSecretRef":"","server":"acr4kpuurnmdpq2o.azurecr.io","username":""}]},"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/containerApps/app-4kpuurnmdpq2o/eventstream","latestReadyRevisionName":"app-4kpuurnmdpq2o--14v28km","latestRevisionFqdn":"app-4kpuurnmdpq2o--14v28km.happydesert-ec3c7320.eastus2.azurecontainerapps.io","latestRevisionName":"app-4kpuurnmdpq2o--14v28km","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.211.131.63"],"provisioningState":"Succeeded","template":{"containers":[{"image":"acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349","name":"app","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1728953349","scale":{"maxReplicas":10,"minReplicas":1}},"workloadProfileName":"consumption"},"systemData":{"createdAt":"2024-10-15T00:51:51.5925231Z","createdBy":"hemarina@microsoft.com","createdByType":"User","lastModifiedAt":"2024-10-15T00:51:51.5925231Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"},"type":"Microsoft.App/containerApps"}' form: {} headers: Accept: @@ -7625,14 +7564,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "3421" + - "3431" Content-Type: - application/json User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec?api-version=2023-11-02-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o?api-version=2023-11-02-preview method: PATCH response: proto: HTTP/2.0 @@ -7647,17 +7586,17 @@ interactions: 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 Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4257896e-8276-44c2-a107-fc96cdd9f6d0?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638599766080073990&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=MIaekgl-Dja85wEI2kqDScUjWhH1Zo8nizyFWrULaeX31E78DdkJf0m6s2XjdAVWWoZd-ZtMht95uNS44XXSEhOTVqjA-bOKXhBdhV2vCwTWzPJ7pEUvwOUcsOW5CROhZ1yWvUN8YfOgQcBG1ojIBqBj-P6HsMHVEdl3u05H8MoWCHPj9I44he55AnDykHTzTARCXdzAJ49vFHCExU6PyJlROiB0wWvHqg9SqAn_VZrH990pyM6Cwg2GOlc4bcnn-FBv5bGTvxFKnUwAF08iWDBsK8dh52o8pePcbYtBJxLNZNZzzHyQuCdfe4-T3S7SeyCqZdbrI6zqR-0g5jtxow&h=NgJhUvgYU6sLFm0M1Yn8R0NfNX4h5B_Am-PuMJz-8KQ + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9fa9715-705e-49e6-81cd-136bed7d9ede?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638645504203128332&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=UoYFWAwBK4wibx8Rvzn2-CgFGlNuSXuADN9TUtLg59BRmU2R_RJQDWxaM69JgLIeorerfWeurxE8i1YMm8ze0SjNuDPeJVRkQ73bXXGMuliWtbQjooNUbG8uYZ4PfkFlBHuQQrp3TOtBdrIV7mzkDM34rtQwf5j_iFOz00_71iTtlbO2QiWdlEZUjsl1oHW3Jk-EvAgSBVUYvzUf8jgOvvj8C1d4BKuLXPBeaePOV-Pu_x7YyVHayptj-2GzBLIKECYJ1ZsoIqFeXNN7NRd8vZGodq6Y-FszboQIfygo1dR7ldGzGW8VzV-gUsJWjTkkWHp_FtCgsU-mwyjHYVejwg&h=ckvZHeLrsfsomdj6jTKXwm7BxSbOSZsp8nEH8qrsnoo Cache-Control: - no-cache Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:23:27 GMT + - Tue, 15 Oct 2024 00:53:40 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationResults/4257896e-8276-44c2-a107-fc96cdd9f6d0?api-version=2023-11-02-preview&t=638599766080230223&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Cl2AM-bb86xEiYcqns513NK1DigQEEqyDWmiqbtR4QCyd1EWNCO3Re-F79z7MwYGVNbmouLvGFQwgqoXpk6kkzHsV_uQEbE6IzVjFjw9S-BSxbJUzKdu2vD9b9qEashSImtrfkbgIscm3AZgfvxvmkOVwcC5V1BCJAra7qxZO6zeTC4esxWOz9MXupQ_j7XXHn3Bq09MmskLlZO1-T1XN0vgvy9IljnJZFcaT-UR_30eNCBrpqvDdn6gsJzZlxKUWYyEQ5Wxavk0JNPTbT0nqpKD3CZNBFdAVZ_TTNwEwNs026jAhasvvM8VWTQqv7dGnHlsQni9ff2gtDrm662ruQ&h=87auh9oQDPEt5PZPmZoy-NFWf_5e7KlXT9Pc6BZb0Sk + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationResults/d9fa9715-705e-49e6-81cd-136bed7d9ede?api-version=2023-11-02-preview&t=638645504203128332&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=PbAq_vjcqa8M3AJWVWBJmIYBo66auweKjitIHTXd2u1dmEFxRCz_4bjS9xvccYBCxty1SqcwSv5TeRITIfNkfJo3q3LUwzuPwJiGA0aCQiMwgyNknQn49jC5SaxLR0W1sGR0vkl0IiCa_ajpN9RYpSIZEPoaQ_GQLofxxx_amE5Iwp9ZzJVNWxloN_Yd8kNpVRe0IyneKPCcOjqh97mnVm8QUc5ZQsAjXp5G-eMMWzxyZRI2ECczyMgbf9CqH-Svk1TNJBPRCCrP0IOleHNJVxSWJDnTefQyXtfSQjcRe6lZFLjXTJ6Boit0y0ZK4mVq8qnA-j9xw2gsRParyVqYlg&h=kidkmzVdsluO4buvMg2QCz_C7CrDlji1NYVjG9gfbmE Pragma: - no-cache Retry-After: @@ -7669,21 +7608,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - f80b7750-7fa3-4766-aa34-67b1012a2278 + - fd54b549-2018-4e42-95bc-5bcc6570c565 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022328Z:f80b7750-7fa3-4766-aa34-67b1012a2278 + - WESTUS2:20241015T005340Z:fd54b549-2018-4e42-95bc-5bcc6570c565 X-Msedge-Ref: - - 'Ref A: 0C7A9EDA46DD4C1382DDCFD2DBCACA92 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:25Z' + - 'Ref A: 657E72B5F76E46C6A3A6BE1401F3F4D0 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:38Z' X-Powered-By: - ASP.NET status: 202 Accepted code: 202 - duration: 2.5331961s - - id: 105 + duration: 2.2297303s + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -7702,10 +7641,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/4257896e-8276-44c2-a107-fc96cdd9f6d0?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638599766080073990&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=MIaekgl-Dja85wEI2kqDScUjWhH1Zo8nizyFWrULaeX31E78DdkJf0m6s2XjdAVWWoZd-ZtMht95uNS44XXSEhOTVqjA-bOKXhBdhV2vCwTWzPJ7pEUvwOUcsOW5CROhZ1yWvUN8YfOgQcBG1ojIBqBj-P6HsMHVEdl3u05H8MoWCHPj9I44he55AnDykHTzTARCXdzAJ49vFHCExU6PyJlROiB0wWvHqg9SqAn_VZrH990pyM6Cwg2GOlc4bcnn-FBv5bGTvxFKnUwAF08iWDBsK8dh52o8pePcbYtBJxLNZNZzzHyQuCdfe4-T3S7SeyCqZdbrI6zqR-0g5jtxow&h=NgJhUvgYU6sLFm0M1Yn8R0NfNX4h5B_Am-PuMJz-8KQ + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9fa9715-705e-49e6-81cd-136bed7d9ede?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638645504203128332&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=UoYFWAwBK4wibx8Rvzn2-CgFGlNuSXuADN9TUtLg59BRmU2R_RJQDWxaM69JgLIeorerfWeurxE8i1YMm8ze0SjNuDPeJVRkQ73bXXGMuliWtbQjooNUbG8uYZ4PfkFlBHuQQrp3TOtBdrIV7mzkDM34rtQwf5j_iFOz00_71iTtlbO2QiWdlEZUjsl1oHW3Jk-EvAgSBVUYvzUf8jgOvvj8C1d4BKuLXPBeaePOV-Pu_x7YyVHayptj-2GzBLIKECYJ1ZsoIqFeXNN7NRd8vZGodq6Y-FszboQIfygo1dR7ldGzGW8VzV-gUsJWjTkkWHp_FtCgsU-mwyjHYVejwg&h=ckvZHeLrsfsomdj6jTKXwm7BxSbOSZsp8nEH8qrsnoo method: GET response: proto: HTTP/2.0 @@ -7715,7 +7654,7 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/06999ee4-874b-438b-a0d8-54adb29dcfbd","name":"06999ee4-874b-438b-a0d8-54adb29dcfbd","status":"Succeeded","startTime":"2024-08-23T02:23:27.9430788"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d9fa9715-705e-49e6-81cd-136bed7d9ede","name":"d9fa9715-705e-49e6-81cd-136bed7d9ede","status":"Succeeded","startTime":"2024-10-15T00:53:40.1973987"}' 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 @@ -7726,7 +7665,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:43 GMT + - Tue, 15 Oct 2024 00:53:55 GMT Expires: - "-1" Pragma: @@ -7740,21 +7679,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a9227710-f1c9-4653-91b1-d61776fbc050 + - 5dec343a-0edc-466a-ae00-e107e4469f0c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022343Z:a9227710-f1c9-4653-91b1-d61776fbc050 + - WESTUS2:20241015T005355Z:5dec343a-0edc-466a-ae00-e107e4469f0c X-Msedge-Ref: - - 'Ref A: 30E3975E604541EDB3409CF69ADD808A Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:43Z' + - 'Ref A: AED7F690AFA24418A9F8B3D1536829F1 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:55Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 390.62ms - - id: 106 + duration: 358.874ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -7773,10 +7714,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec?api-version=2023-11-02-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7784,20 +7725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3836 + content_length: 3846 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerapps/app-hdcsusgdiumec","name":"app-hdcsusgdiumec","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:21:24.3770256","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:23:27.3510401"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","4.152.1.153"],"latestRevisionName":"app-hdcsusgdiumec--azd-1724379555","latestReadyRevisionName":"app-hdcsusgdiumec--ddddtms","latestRevisionFqdn":"app-hdcsusgdiumec--azd-1724379555.icypebble-38e1316e.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-hdcsusgdiumec.icypebble-38e1316e.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,"targetPortHttpScheme":null},"registries":[{"server":"acrhdcsusgdiumec.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1724379555","terminationGracePeriodSeconds":null,"containers":[{"image":"acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/containerApps/app-hdcsusgdiumec/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4","clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerapps/app-4kpuurnmdpq2o","name":"app-4kpuurnmdpq2o","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:51:51.5925231","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:53:39.5472492"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.211.131.63"],"latestRevisionName":"app-4kpuurnmdpq2o--azd-1728953349","latestReadyRevisionName":"app-4kpuurnmdpq2o--14v28km","latestRevisionFqdn":"app-4kpuurnmdpq2o--azd-1728953349.happydesert-ec3c7320.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-4kpuurnmdpq2o.happydesert-ec3c7320.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,"targetPortHttpScheme":null},"registries":[{"server":"acr4kpuurnmdpq2o.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1728953349","terminationGracePeriodSeconds":null,"containers":[{"image":"acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/containerApps/app-4kpuurnmdpq2o/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9","clientId":"69a807c8-bc07-46b2-8637-70335088ccb5"}}}}' 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 Cache-Control: - no-cache Content-Length: - - "3836" + - "3846" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:43 GMT + - Tue, 15 Oct 2024 00:53:56 GMT Expires: - "-1" Pragma: @@ -7811,21 +7752,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 4a92afdd-9918-42bf-8b97-3c97a65cbc81 + - 0e65d2d0-faa8-45a8-99a8-85c6ee4230bb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022344Z:4a92afdd-9918-42bf-8b97-3c97a65cbc81 + - WESTUS2:20241015T005356Z:0e65d2d0-faa8-45a8-99a8-85c6ee4230bb X-Msedge-Ref: - - 'Ref A: FF36FDC764714634814B8E4355253542 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:43Z' + - 'Ref A: B77571E770994D0D8F4E45AE7A356245 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:55Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 530.4889ms - - id: 107 + duration: 651.643ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -7846,10 +7789,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec?api-version=2023-11-02-preview + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7857,20 +7800,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3836 + content_length: 3846 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerapps/app-hdcsusgdiumec","name":"app-hdcsusgdiumec","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:21:24.3770256","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:23:27.3510401"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","4.152.1.153"],"latestRevisionName":"app-hdcsusgdiumec--azd-1724379555","latestReadyRevisionName":"app-hdcsusgdiumec--ddddtms","latestRevisionFqdn":"app-hdcsusgdiumec--azd-1724379555.icypebble-38e1316e.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-hdcsusgdiumec.icypebble-38e1316e.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,"targetPortHttpScheme":null},"registries":[{"server":"acrhdcsusgdiumec.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1724379555","terminationGracePeriodSeconds":null,"containers":[{"image":"acrhdcsusgdiumec.azurecr.io/webapp/app-azdtest-w1574a7:azd-deploy-1724379555","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/containerApps/app-hdcsusgdiumec/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4","clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerapps/app-4kpuurnmdpq2o","name":"app-4kpuurnmdpq2o","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:51:51.5925231","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:53:39.5472492"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","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.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","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.211.131.63"],"latestRevisionName":"app-4kpuurnmdpq2o--azd-1728953349","latestReadyRevisionName":"app-4kpuurnmdpq2o--14v28km","latestRevisionFqdn":"app-4kpuurnmdpq2o--azd-1728953349.happydesert-ec3c7320.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-4kpuurnmdpq2o.happydesert-ec3c7320.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,"targetPortHttpScheme":null},"registries":[{"server":"acr4kpuurnmdpq2o.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1728953349","terminationGracePeriodSeconds":null,"containers":[{"image":"acr4kpuurnmdpq2o.azurecr.io/webapp/app-azdtest-wd5d570:azd-deploy-1728953349","name":"app","resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"},"probes":[]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/containerApps/app-4kpuurnmdpq2o/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9","clientId":"69a807c8-bc07-46b2-8637-70335088ccb5"}}}}' 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 Cache-Control: - no-cache Content-Length: - - "3836" + - "3846" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:44 GMT + - Tue, 15 Oct 2024 00:53:56 GMT Expires: - "-1" Pragma: @@ -7884,21 +7827,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - ea6c9def-0417-4d5f-9fa7-8acc6e2d0864 + - eae7b5fb-5e31-4d49-b11f-6d0b6f2f15e2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022344Z:ea6c9def-0417-4d5f-9fa7-8acc6e2d0864 + - WESTUS2:20241015T005356Z:eae7b5fb-5e31-4d49-b11f-6d0b6f2f15e2 X-Msedge-Ref: - - 'Ref A: 07E7C9C3510A4DF99EA2D2AACFA516AF Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:44Z' + - 'Ref A: B38ED480D88E42298DB1AAE7F9656193 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:56Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 682.4493ms - - id: 108 + duration: 340.9628ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -7919,10 +7864,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w1574a7%27&api-version=2021-04-01 + - 3c86fb099e6d508b15967025cf50e87b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd5d570%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -7932,7 +7877,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7","name":"rg-azdtest-w1574a7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","DeleteAfter":"2024-08-23T03:19:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570","name":"rg-azdtest-wd5d570","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","DeleteAfter":"2024-10-15T01:49:46Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -7941,7 +7886,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:44 GMT + - Tue, 15 Oct 2024 00:53:56 GMT Expires: - "-1" Pragma: @@ -7953,19 +7898,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - 3c86fb099e6d508b15967025cf50e87b + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - a1fe65b5-7e45-4f59-9d86-6d8ed0e7fa44 + - 94deee51-c117-4223-83bc-3d07b3760bb7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022344Z:a1fe65b5-7e45-4f59-9d86-6d8ed0e7fa44 + - WESTUS2:20241015T005356Z:94deee51-c117-4223-83bc-3d07b3760bb7 X-Msedge-Ref: - - 'Ref A: ED7A6612D24B48EB9CC4A0F8187867F6 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:44Z' + - 'Ref A: D1133FC9E0124E518D6D8D4A974EF888 Ref B: CO6AA3150219023 Ref C: 2024-10-15T00:53:56Z' status: 200 OK code: 200 - duration: 78.5114ms - - id: 109 + duration: 74.818ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -7973,7 +7920,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io + host: app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io remote_addr: "" request_uri: "" body: "" @@ -7985,7 +7932,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io:443/ + url: https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io:443/ method: GET response: proto: HTTP/2.0 @@ -8002,11 +7949,11 @@ interactions: Content-Type: - text/plain Date: - - Fri, 23 Aug 2024 02:27:44 GMT + - Tue, 15 Oct 2024 00:57:57 GMT status: 504 Gateway Timeout code: 504 - duration: 4m0.2906404s - - id: 110 + duration: 4m0.5102446s + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -8014,7 +7961,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io + host: app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io remote_addr: "" request_uri: "" body: "" @@ -8026,7 +7973,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io:443/ + url: https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io:443/ method: GET response: proto: HTTP/2.0 @@ -8043,11 +7990,11 @@ interactions: Content-Type: - text/plain Date: - - Fri, 23 Aug 2024 02:27:45 GMT + - Tue, 15 Oct 2024 00:57:57 GMT status: 200 OK code: 200 - duration: 94.2217ms - - id: 111 + duration: 85.3604ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -8068,9 +8015,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -8079,18 +8026,85 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2130752 + content_length: 2189360 + 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=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","location":"eastus2","name":"azdtest-wd5d570-1728953349","properties":{"correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570","resourceName":"rg-azdtest-wd5d570","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT2M27.0660355S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/providers/Microsoft.Authorization/roleAssignments/7c32d5d2-9aa0-51eb-bf7c-f833f7e10743"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr4kpuurnmdpq2o.azurecr.io"},"websitE_URL":{"type":"String","value":"https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io/"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:46Z"},"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"7771222558848349697","timestamp":"2024-10-15T00:52:16.2629052Z"},"tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2189360" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:58: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: + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4bf5c65f-686c-41f5-a4f2-f593d8fc9d79 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T005808Z:4bf5c65f-686c-41f5-a4f2-f593d8fc9d79 + X-Msedge-Ref: + - 'Ref A: 7C553BDE2C2B4CA28B6656C1EC1F742C Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:01Z' + status: 200 OK + code: 200 + duration: 7.1656221s + - id: 111 + 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 867605 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=xdHLToNAFAbgZ%2bmsa8IwpDHddZwhpnqGzrXBXVMRgQkkSgOl4d0FtXs3prtz%2bTdf%2fgs6NnVb1KdDWzS1aaqs%2fkTrC%2bIbbayepzrr293hoy3mwFN2RmuEF%2fcLYdIehvQOLb8TqumuP0xWC1XFFFjeSfvCwMpIMEoV80wGLgbLA2Eok8Y9CPP6prBInnXQJcxOuSMRLMWJgQjKlMDAMZwxV46Cwf5ROaWVEzvntmy6aYNpbL3aKgcrqJQU9l2IuBogiBODhUPj8pcS3soSQin7hHEiyk0ExV8tcjCxcg7nxDiv9z4PZ8ue37KWf6BMtdQn768y8rOO4xc%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","location":"eastus2","name":"azdtest-w1574a7-1724379555","properties":{"correlationId":"a0b54248836ba1cc2e91b499ef84bc76","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7","resourceName":"rg-azdtest-w1574a7","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT2M10.7446334S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/providers/Microsoft.Authorization/roleAssignments/9150bfe3-777a-5e13-9104-0040e563e250"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrhdcsusgdiumec.azurecr.io"},"websitE_URL":{"type":"String","value":"https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io/"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-08-23T03:19:36Z"},"environmentName":{"type":"String","value":"azdtest-w1574a7"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"7771222558848349697","timestamp":"2024-08-23T02:21:49.4494033Z"},"tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2130752" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:54 GMT + - Tue, 15 Oct 2024 00:58:12 GMT Expires: - "-1" Pragma: @@ -8102,18 +8116,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 4dc94be2-8d4d-45b0-86c5-34b73bf39e82 + - 69f1db09-437c-458f-a928-991369299a27 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022755Z:4dc94be2-8d4d-45b0-86c5-34b73bf39e82 + - WESTUS2:20241015T005813Z:69f1db09-437c-458f-a928-991369299a27 X-Msedge-Ref: - - 'Ref A: 1500129F8AA74A37826A97997C0E743F Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:48Z' + - 'Ref A: 956248973DDA4EEB839089178D18DD9C Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:08Z' status: 200 OK code: 200 - duration: 6.9798197s + duration: 4.6634851s - id: 112 request: proto: HTTP/1.1 @@ -8133,10 +8149,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xdHLToNAFAbgZ%2bmsa8IwpDHddZwhpnqGzrXBXVMRgQkkSgOl4d0FtXs3prtz%2bTdf%2fgs6NnVb1KdDWzS1aaqs%2fkTrC%2bIbbayepzrr293hoy3mwFN2RmuEF%2fcLYdIehvQOLb8TqumuP0xWC1XFFFjeSfvCwMpIMEoV80wGLgbLA2Eok8Y9CPP6prBInnXQJcxOuSMRLMWJgQjKlMDAMZwxV46Cwf5ROaWVEzvntmy6aYNpbL3aKgcrqJQU9l2IuBogiBODhUPj8pcS3soSQin7hHEiyk0ExV8tcjCxcg7nxDiv9z4PZ8ue37KWf6BMtdQn768y8rOO4xc%3d + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -8144,18 +8160,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 385740 + content_length: 582659 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "385740" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:56 GMT + - Tue, 15 Oct 2024 00:58:16 GMT Expires: - "-1" Pragma: @@ -8167,18 +8183,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - ce5886bb-3ff7-4859-9e3e-dc909701ded9 + - 09578595-3ff2-4289-ac09-5092785c360f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022757Z:ce5886bb-3ff7-4859-9e3e-dc909701ded9 + - WESTUS2:20241015T005817Z:09578595-3ff2-4289-ac09-5092785c360f X-Msedge-Ref: - - 'Ref A: E965001B9AFD45B2813CDDF6699D5BF9 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:55Z' + - 'Ref A: 7E2D318BCD4D47809A0E36F237FA8EEF Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:13Z' status: 200 OK code: 200 - duration: 2.168465s + duration: 3.7839172s - id: 113 request: proto: HTTP/1.1 @@ -8193,17 +8211,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -8211,18 +8227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 262264 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w1574a7"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:19:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:21:49.4494033Z","duration":"PT2M10.7446334S","correlationId":"a0b54248836ba1cc2e91b499ef84bc76","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-w1574a7","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w1574a7"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrhdcsusgdiumec.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/providers/Microsoft.Authorization/roleAssignments/9150bfe3-777a-5e13-9104-0040e563e250"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:56 GMT + - Tue, 15 Oct 2024 00:58:19 GMT Expires: - "-1" Pragma: @@ -8234,18 +8250,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 015d819c-de9d-41ff-b93a-d4c9754899ac + - 3c91e0d3-295a-4edb-b125-b5a28c0c2628 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022757Z:015d819c-de9d-41ff-b93a-d4c9754899ac + - WESTUS2:20241015T005820Z:3c91e0d3-295a-4edb-b125-b5a28c0c2628 X-Msedge-Ref: - - 'Ref A: AA2743493BB44251AA9F7C6F88FCB309 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:57Z' + - 'Ref A: 0B80CFBA32024B85AA4106B4301DA9B9 Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:17Z' status: 200 OK code: 200 - duration: 415.8388ms + duration: 2.7943482s - id: 114 request: proto: HTTP/1.1 @@ -8267,10 +8285,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w1574a7%27&api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8278,18 +8296,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 2786 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7","name":"rg-azdtest-w1574a7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","DeleteAfter":"2024-08-23T03:19:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:46Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T00:52:16.2629052Z","duration":"PT2M27.0660355S","correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","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-wd5d570","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd5d570"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr4kpuurnmdpq2o.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/providers/Microsoft.Authorization/roleAssignments/7c32d5d2-9aa0-51eb-bf7c-f833f7e10743"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "2786" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:57 GMT + - Tue, 15 Oct 2024 00:58:20 GMT Expires: - "-1" Pragma: @@ -8301,18 +8319,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 2be3b5be-18a2-47f7-88a6-65bf6b45e7aa + - 04799729-9ecb-4d73-89ea-c12babdb4e16 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022757Z:2be3b5be-18a2-47f7-88a6-65bf6b45e7aa + - WESTUS2:20241015T005820Z:04799729-9ecb-4d73-89ea-c12babdb4e16 X-Msedge-Ref: - - 'Ref A: A9ED9EB89371488CB7D4CC22AAF6F877 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:57Z' + - 'Ref A: 8F6CA20C7E2F4942B38F3E7C87042D59 Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:20Z' status: 200 OK code: 200 - duration: 67.2791ms + duration: 402.8587ms - id: 115 request: proto: HTTP/1.1 @@ -8334,10 +8354,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/resources?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd5d570%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8345,18 +8365,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2589 + content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec","name":"acrhdcsusgdiumec","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:19:46.7089998Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:19:46.7089998Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec","name":"law-hdcsusgdiumec","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec","name":"mi-hdcsusgdiumec","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","name":"cae-hdcsusgdiumec","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:20:04.7117182Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:20:04.7117182Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec","name":"app-hdcsusgdiumec","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4","clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170"}}},"tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:21:24.3770256Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:23:27.3510401Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570","name":"rg-azdtest-wd5d570","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","DeleteAfter":"2024-10-15T01:49:46Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2589" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:57 GMT + - Tue, 15 Oct 2024 00:58:20 GMT Expires: - "-1" Pragma: @@ -8368,18 +8388,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 47c0174a-6c22-4e59-a2b4-df31ea863a3c + - 34aced1e-fd79-4775-9a9a-1ee1ddcaa727 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022758Z:47c0174a-6c22-4e59-a2b4-df31ea863a3c + - WESTUS2:20241015T005820Z:34aced1e-fd79-4775-9a9a-1ee1ddcaa727 X-Msedge-Ref: - - 'Ref A: E40BA1D8CB3C43A68FBD8A4C03628A2F Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:58Z' + - 'Ref A: 64920EC4AE1D43539610605F3205D483 Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:20Z' status: 200 OK code: 200 - duration: 551.3032ms + duration: 73.3983ms - id: 116 request: proto: HTTP/1.1 @@ -8401,10 +8423,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8412,18 +8434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2601 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w1574a7"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:19:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:21:49.4494033Z","duration":"PT2M10.7446334S","correlationId":"a0b54248836ba1cc2e91b499ef84bc76","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-w1574a7","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w1574a7"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrhdcsusgdiumec.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/providers/Microsoft.Authorization/roleAssignments/9150bfe3-777a-5e13-9104-0040e563e250"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec"}]}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o","name":"law-4kpuurnmdpq2o","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o","name":"acr4kpuurnmdpq2o","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:49:55.3743969Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:49:55.3743969Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o","name":"mi-4kpuurnmdpq2o","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","name":"cae-4kpuurnmdpq2o","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:50:12.3445247Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:50:12.3445247Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o","name":"app-4kpuurnmdpq2o","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9","clientId":"69a807c8-bc07-46b2-8637-70335088ccb5"}}},"tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:51:51.5925231Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:53:39.5472492Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2601" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:58 GMT + - Tue, 15 Oct 2024 00:58:20 GMT Expires: - "-1" Pragma: @@ -8435,18 +8457,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - fed9041e-2824-4801-aa11-24abd8d7e04e + - fe766c60-1023-42ce-9239-61ef96c63ed7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022758Z:fed9041e-2824-4801-aa11-24abd8d7e04e + - WESTUS2:20241015T005821Z:fe766c60-1023-42ce-9239-61ef96c63ed7 X-Msedge-Ref: - - 'Ref A: 04198DF520584E87B1A22D57F4E831CA Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:58Z' + - 'Ref A: 8DBB6AE0C49C45D292EA8A213D3FA093 Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:20Z' status: 200 OK code: 200 - duration: 362.7515ms + duration: 355.5509ms - id: 117 request: proto: HTTP/1.1 @@ -8468,10 +8492,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w1574a7%27&api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8479,18 +8503,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 2786 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7","name":"rg-azdtest-w1574a7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","DeleteAfter":"2024-08-23T03:19:36Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:46Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T00:52:16.2629052Z","duration":"PT2M27.0660355S","correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","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-wd5d570","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd5d570"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr4kpuurnmdpq2o.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/providers/Microsoft.Authorization/roleAssignments/7c32d5d2-9aa0-51eb-bf7c-f833f7e10743"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "2786" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:58 GMT + - Tue, 15 Oct 2024 00:58:21 GMT Expires: - "-1" Pragma: @@ -8502,18 +8526,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - ac8a3026-3a00-4abe-9270-5296c8f5dcd8 + - d19fb6b0-cd20-4ea0-bb16-ba876bd11b6c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022759Z:ac8a3026-3a00-4abe-9270-5296c8f5dcd8 + - WESTUS2:20241015T005821Z:d19fb6b0-cd20-4ea0-bb16-ba876bd11b6c X-Msedge-Ref: - - 'Ref A: 27EC08289F6245E5977AF6CE0A01749E Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:59Z' + - 'Ref A: 08E0859FCCCD4321BE806316A98E7B12 Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:21Z' status: 200 OK code: 200 - duration: 83.6056ms + duration: 445.151ms - id: 118 request: proto: HTTP/1.1 @@ -8535,10 +8561,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/resources?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd5d570%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8546,18 +8572,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2589 + content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec","name":"acrhdcsusgdiumec","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:19:46.7089998Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:19:46.7089998Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec","name":"law-hdcsusgdiumec","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec","name":"mi-hdcsusgdiumec","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec","name":"cae-hdcsusgdiumec","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:20:04.7117182Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:20:04.7117182Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec","name":"app-hdcsusgdiumec","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec":{"principalId":"8677c664-b85f-40f2-8034-c46fc2961ef4","clientId":"1ee28c30-a976-4904-8b9f-3840a3ac8170"}}},"tags":{"azd-env-name":"azdtest-w1574a7","azd-service-name":"app"},"systemData":{"createdBy":"wabrez@microsoft.com","createdByType":"User","createdAt":"2024-08-23T02:21:24.3770256Z","lastModifiedBy":"wabrez@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-08-23T02:23:27.3510401Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570","name":"rg-azdtest-wd5d570","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","DeleteAfter":"2024-10-15T01:49:46Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2589" + - "325" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:58 GMT + - Tue, 15 Oct 2024 00:58:21 GMT Expires: - "-1" Pragma: @@ -8569,18 +8595,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - f52b5312-2f22-40ba-b326-b57d6771cde7 + - 448b7988-05f1-4886-86f4-c5ff628c77ea X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022759Z:f52b5312-2f22-40ba-b326-b57d6771cde7 + - WESTUS2:20241015T005821Z:448b7988-05f1-4886-86f4-c5ff628c77ea X-Msedge-Ref: - - 'Ref A: B06FBE6FE99D474EABFAE54EEA749BA2 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:59Z' + - 'Ref A: A051D8D580794A129488E1E4FE25D26E Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:21Z' status: 200 OK code: 200 - duration: 595.2283ms + duration: 98.0865ms - id: 119 request: proto: HTTP/1.1 @@ -8602,10 +8630,79 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/resources?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2601 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o","name":"law-4kpuurnmdpq2o","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o","name":"acr4kpuurnmdpq2o","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:49:55.3743969Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:49:55.3743969Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o","name":"mi-4kpuurnmdpq2o","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o","name":"cae-4kpuurnmdpq2o","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:50:12.3445247Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:50:12.3445247Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o","name":"app-4kpuurnmdpq2o","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o":{"principalId":"1a5ecddb-0d02-4f75-8edc-49fa7c38c7a9","clientId":"69a807c8-bc07-46b2-8637-70335088ccb5"}}},"tags":{"azd-env-name":"azdtest-wd5d570","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-10-15T00:51:51.5925231Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-10-15T00:53:39.5472492Z"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2601" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 00:58:28 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: + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4690cdbc-4a13-447e-bd9f-7e64a7f2eb03 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T005829Z:4690cdbc-4a13-447e-bd9f-7e64a7f2eb03 + X-Msedge-Ref: + - 'Ref A: C3803978F8174C84857A37D8A8744F5A Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:21Z' + status: 200 OK + code: 200 + duration: 7.6000207s + - id: 120 + 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.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w1574a7?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd5d570?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -8622,11 +8719,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:28:00 GMT + - Tue, 15 Oct 2024 00:58:30 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMTU3NEE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599781423168126&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=k1VZxPOEdupSZ8PvSacY8ucsslbirBXD33a0S3iCz3X-L7QltSDZgZT2m1WiwbKlQT8UMV5MqJXEeA5suEBdGE09NMJwhO_FnpEZX0GXOc7_5qnsZrGdpe2WA1hCgIp3VIzabx5LbLYOpNjZSh6lWWqdqkG7M5L4ZPdBCMijUeAKAfbbodf4_4x7Bko8GOFn39dy13xHF2DHWpR2LZbRHCmPmcrRc8rAfmiUZ1E-_hh29d9tE3_Y2B6n_-Sg3IAs6Z2Skt40z5ISf5rXfF_eTswUTo-VuRxFx9QgKeNJUZdtKYETEzMNhFF3yGU6Sx2gnBAGxeKKAbibERq7Bj874g&h=fnYN0DLg4U2g-kB9f2J4z-Ov2CTGfYRMH5SAEjkHrXc + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRDVENTcwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645517224729588&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Mn2-d8JHgPYHs3hFCm5nlSJOPPtbd1Yp8ek0vuN0MYE0nL_dT8LSCXAZrunLZLqKwGOr8rN-uYVoenl6LYXGtReAcqFbd1xjulEfWiQaYpvQh8PfJWII3-cb4GH4PIEWK7kQQe-5t2K8bNFrEC_BrcRqx3GLjHb4ifdNpETJEA16Tkrc7ASZvKx9cvykvHM8K3HYb85Tv7OnnYqDR7sGR5o8TpQCsUna73wE26FI6Ps9D3H1WBMTspzfRorBPnyLvrEuP3-Xf6bdnm7WC4e0ePU9QT3dddB_aREF5UYjI8H9u7LzHsrUCbJKZ59AuxckDu0zgmyj6ZrC2Ums55Q5NA&h=k1bo5CxDFlADriHzMfE_ZreipddzmGoyHkk2-OHN6E0 Pragma: - no-cache Retry-After: @@ -8638,19 +8735,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - fb7ad2ba-af46-41a5-ae6b-d19cf281084e + - b188cc5e-f93b-4881-b174-5d4f684429a3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022801Z:fb7ad2ba-af46-41a5-ae6b-d19cf281084e + - WESTUS2:20241015T005831Z:b188cc5e-f93b-4881-b174-5d4f684429a3 X-Msedge-Ref: - - 'Ref A: 91DDBF9870134981B1713471EF03A085 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:59Z' + - 'Ref A: 92168D9512C14CF69C78213E8DA1B6E8 Ref B: CO6AA3150219049 Ref C: 2024-10-15T00:58:29Z' status: 202 Accepted code: 202 - duration: 1.5159571s - - id: 120 + duration: 1.8987058s + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -8669,10 +8768,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMTU3NEE3LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599781423168126&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=k1VZxPOEdupSZ8PvSacY8ucsslbirBXD33a0S3iCz3X-L7QltSDZgZT2m1WiwbKlQT8UMV5MqJXEeA5suEBdGE09NMJwhO_FnpEZX0GXOc7_5qnsZrGdpe2WA1hCgIp3VIzabx5LbLYOpNjZSh6lWWqdqkG7M5L4ZPdBCMijUeAKAfbbodf4_4x7Bko8GOFn39dy13xHF2DHWpR2LZbRHCmPmcrRc8rAfmiUZ1E-_hh29d9tE3_Y2B6n_-Sg3IAs6Z2Skt40z5ISf5rXfF_eTswUTo-VuRxFx9QgKeNJUZdtKYETEzMNhFF3yGU6Sx2gnBAGxeKKAbibERq7Bj874g&h=fnYN0DLg4U2g-kB9f2J4z-Ov2CTGfYRMH5SAEjkHrXc + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRDVENTcwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645517224729588&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=Mn2-d8JHgPYHs3hFCm5nlSJOPPtbd1Yp8ek0vuN0MYE0nL_dT8LSCXAZrunLZLqKwGOr8rN-uYVoenl6LYXGtReAcqFbd1xjulEfWiQaYpvQh8PfJWII3-cb4GH4PIEWK7kQQe-5t2K8bNFrEC_BrcRqx3GLjHb4ifdNpETJEA16Tkrc7ASZvKx9cvykvHM8K3HYb85Tv7OnnYqDR7sGR5o8TpQCsUna73wE26FI6Ps9D3H1WBMTspzfRorBPnyLvrEuP3-Xf6bdnm7WC4e0ePU9QT3dddB_aREF5UYjI8H9u7LzHsrUCbJKZ59AuxckDu0zgmyj6ZrC2Ums55Q5NA&h=k1bo5CxDFlADriHzMfE_ZreipddzmGoyHkk2-OHN6E0 method: GET response: proto: HTTP/2.0 @@ -8689,7 +8788,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:49:17 GMT + - Tue, 15 Oct 2024 01:15:37 GMT Expires: - "-1" Pragma: @@ -8701,19 +8800,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 130ebe45-9fda-4317-8440-023c3029a78a + - 12d70aa6-98b6-4e6f-8e47-282f8f46bc91 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024917Z:130ebe45-9fda-4317-8440-023c3029a78a + - WESTUS2:20241015T011537Z:12d70aa6-98b6-4e6f-8e47-282f8f46bc91 X-Msedge-Ref: - - 'Ref A: 151093429900463DB43C7056C743DFF0 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:17Z' + - 'Ref A: 5113D48AEDB74494A9C73BF8029A4626 Ref B: CO6AA3150219049 Ref C: 2024-10-15T01:15:37Z' status: 200 OK code: 200 - duration: 218.329ms - - id: 121 + duration: 253.0307ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -8734,10 +8835,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8745,18 +8846,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2786 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w1574a7","azd-provision-param-hash":"2134b3550412237592fd69120ad8a9a1bcc18cf49f389b43c7098207ff2dc6df"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w1574a7"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T03:19:36Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:21:49.4494033Z","duration":"PT2M10.7446334S","correlationId":"a0b54248836ba1cc2e91b499ef84bc76","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-w1574a7","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w1574a7"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrhdcsusgdiumec.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/containerApps/app-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.App/managedEnvironments/cae-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ContainerRegistry/registries/acrhdcsusgdiumec/providers/Microsoft.Authorization/roleAssignments/9150bfe3-777a-5e13-9104-0040e563e250"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-hdcsusgdiumec"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w1574a7/providers/Microsoft.OperationalInsights/workspaces/law-hdcsusgdiumec"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd5d570","azd-provision-param-hash":"7461b0054e37733c253b1079c63fee236d3d662a405b9156cd9657dfe1b287ff"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-wd5d570"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T01:49:46Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T00:52:16.2629052Z","duration":"PT2M27.0660355S","correlationId":"8017bd5ee4c4a2758d5cafc6b7a9182f","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-wd5d570","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd5d570"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-4kpuurnmdpq2o.happydesert-ec3c7320.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr4kpuurnmdpq2o.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/containerApps/app-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.App/managedEnvironments/cae-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ContainerRegistry/registries/acr4kpuurnmdpq2o/providers/Microsoft.Authorization/roleAssignments/7c32d5d2-9aa0-51eb-bf7c-f833f7e10743"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-4kpuurnmdpq2o"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd5d570/providers/Microsoft.OperationalInsights/workspaces/law-4kpuurnmdpq2o"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2786" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:17 GMT + - Tue, 15 Oct 2024 01:15:37 GMT Expires: - "-1" Pragma: @@ -8768,19 +8869,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - fa7ea7b1-3068-4f28-bacf-7dc2c161c0b7 + - e722e746-b397-4f9a-be43-c69dc19d7f0c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024917Z:fa7ea7b1-3068-4f28-bacf-7dc2c161c0b7 + - WESTUS2:20241015T011538Z:e722e746-b397-4f9a-be43-c69dc19d7f0c X-Msedge-Ref: - - 'Ref A: E19C67990CEC4E9F81E4304976650436 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:17Z' + - 'Ref A: E779D1F7E98F4D2BACEB734AFA3A4B60 Ref B: CO6AA3150219049 Ref C: 2024-10-15T01:15:37Z' status: 200 OK code: 200 - duration: 404.3311ms - - id: 122 + duration: 437.1732ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -8791,7 +8894,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-w1574a7"}}' + 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-wd5d570"}}' form: {} headers: Accept: @@ -8805,10 +8908,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -8818,10 +8921,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w1574a7"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T02:49:19.9445107Z","duration":"PT0.0001535S","correlationId":"81994add06076efbdab09e2694c271f1","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wd5d570"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T01:15:40.4620139Z","duration":"PT0.0001104S","correlationId":"53e1370785cbdf944798b1487b01fe96","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555/operationStatuses/08584772255267142357?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349/operationStatuses/08584726519468158838?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -8829,7 +8932,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:19 GMT + - Tue, 15 Oct 2024 01:15:40 GMT Expires: - "-1" Pragma: @@ -8841,21 +8944,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 3cf23182-37e9-4139-8b85-46a172baacb8 + - 71acac7c-8c8a-424e-b607-01cbbd23bd9a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024920Z:3cf23182-37e9-4139-8b85-46a172baacb8 + - WESTUS2:20241015T011540Z:71acac7c-8c8a-424e-b607-01cbbd23bd9a X-Msedge-Ref: - - 'Ref A: B79076F8CC7D450FB88F5CE3581A107E Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:18Z' + - 'Ref A: 26C564B071674A8B9E6799202B7EFD12 Ref B: CO6AA3150219049 Ref C: 2024-10-15T01:15:38Z' status: 200 OK code: 200 - duration: 2.3741541s - - id: 123 + duration: 2.7407046s + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -8874,10 +8979,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555/operationStatuses/08584772255267142357?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349/operationStatuses/08584726519468158838?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8896,7 +9001,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:50 GMT + - Tue, 15 Oct 2024 01:16:12 GMT Expires: - "-1" Pragma: @@ -8908,19 +9013,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 7be49a4a-2dbd-44dc-903a-a71f07801902 + - 83cf8551-af76-48d6-9cc6-6e2d0d7b07e4 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024951Z:7be49a4a-2dbd-44dc-903a-a71f07801902 + - WESTUS2:20241015T011612Z:83cf8551-af76-48d6-9cc6-6e2d0d7b07e4 X-Msedge-Ref: - - 'Ref A: B60C3AA33E69493A8ACB400F36EFD0C7 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:50Z' + - 'Ref A: E7F3C03C102A43CD99AF8A0D96BD3B1D Ref B: CO6AA3150219049 Ref C: 2024-10-15T01:16:12Z' status: 200 OK code: 200 - duration: 389.2139ms - - id: 124 + duration: 763.8344ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -8939,10 +9046,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w1574a7-1724379555?api-version=2021-04-01 + - 53e1370785cbdf944798b1487b01fe96 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8950,18 +9057,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-w1574a7-1724379555","name":"azdtest-w1574a7-1724379555","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w1574a7"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T02:49:20.5820942Z","duration":"PT0.637737S","correlationId":"81994add06076efbdab09e2694c271f1","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd5d570-1728953349","name":"azdtest-wd5d570-1728953349","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wd5d570"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:15:41.3059103Z","duration":"PT0.8440068S","correlationId":"53e1370785cbdf944798b1487b01fe96","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "605" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:50 GMT + - Tue, 15 Oct 2024 01:16:13 GMT Expires: - "-1" Pragma: @@ -8973,19 +9080,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 53e1370785cbdf944798b1487b01fe96 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 14337653-7c76-4db4-a5f7-1804842c31b2 + - b6628259-5456-4a3c-a5c2-0461a137c117 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024951Z:14337653-7c76-4db4-a5f7-1804842c31b2 + - WESTUS2:20241015T011613Z:b6628259-5456-4a3c-a5c2-0461a137c117 X-Msedge-Ref: - - 'Ref A: FC6EF62344BB4804955375F76E504F45 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:51Z' + - 'Ref A: 315FEA228F754EC680F8D9EDE8830A91 Ref B: CO6AA3150219049 Ref C: 2024-10-15T01:16:12Z' status: 200 OK code: 200 - duration: 227.1933ms + duration: 404.382ms --- -env_name: azdtest-w1574a7 +env_name: azdtest-wd5d570 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724379555" +time: "1728953349" diff --git a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml index a40742af649..3237a45b745 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml @@ -22,9 +22,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -44,7 +44,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:43 GMT + - Mon, 14 Oct 2024 22:44:11 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 86844907-56bb-41f2-8b58-b7b5768841d9 + - ea1f39c1-2a65-4634-855f-604921d498b5 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002943Z:86844907-56bb-41f2-8b58-b7b5768841d9 + - WESTUS2:20241014T224412Z:ea1f39c1-2a65-4634-855f-604921d498b5 X-Msedge-Ref: - - 'Ref A: 526EE63FE0B645458CA0A75F26684535 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:40Z' + - 'Ref A: B11731DD8AA848979C0B450C80D18B61 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:09Z' status: 200 OK code: 200 - duration: 2.840301s + duration: 2.7459447s - id: 1 request: proto: HTTP/1.1 @@ -89,9 +91,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -100,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2147660 + content_length: 2175169 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=1ZDdToNAEIWfhb1uE5YfY3oHztZUncGFXQzeNRUJP4FEaYBteHeptS%2bgV15MciZzJvnOObFD1%2fZle9z3Zdeqrs7bT7Y5MREkSidn1eZj%2f7z%2f6Muz4TGf2IZx69YilY1osjVbfTvibrjeuO1Zcb0NEYpB6ldALT2CMIyhAWmnW9TCJhWCVOkdqbf3mFP0lNhDBHrxHVyCzF1%2blwk4GWFo4pRA7S36Bms5ktnZqNAnUwxsXv2gOr9jdZ2%2fsjoRZIYAR4Ta4MSlsscHyRsRpyEq3lCsfR1V6T2qwkSw87EKDFYZRyMHNLhkEetzjhfxbyq%2foC6Vt8emuZK7l3WevwA%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2147660" + - "2175169" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:50 GMT + - Mon, 14 Oct 2024 22:44:18 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 878ea6fa-c1d8-4665-bb99-e34e9e92f83a + - 75175bab-c03b-4b95-a882-409819c023e2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002950Z:878ea6fa-c1d8-4665-bb99-e34e9e92f83a + - WESTUS2:20241014T224418Z:75175bab-c03b-4b95-a882-409819c023e2 X-Msedge-Ref: - - 'Ref A: 7C49E4F125E74981BE3B311DC421DE5F Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:43Z' + - 'Ref A: 9E7DEFA4750747139F00F3FABFC3CD4E Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:12Z' status: 200 OK code: 200 - duration: 6.8367698s + duration: 6.4073515s - id: 2 request: proto: HTTP/1.1 @@ -154,10 +158,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZDdToNAEIWfhb1uE5YfY3oHztZUncGFXQzeNRUJP4FEaYBteHeptS%2bgV15MciZzJvnOObFD1%2fZle9z3Zdeqrs7bT7Y5MREkSidn1eZj%2f7z%2f6Muz4TGf2IZx69YilY1osjVbfTvibrjeuO1Zcb0NEYpB6ldALT2CMIyhAWmnW9TCJhWCVOkdqbf3mFP0lNhDBHrxHVyCzF1%2blwk4GWFo4pRA7S36Bms5ktnZqNAnUwxsXv2gOr9jdZ2%2fsjoRZIYAR4Ta4MSlsscHyRsRpyEq3lCsfR1V6T2qwkSw87EKDFYZRyMHNLhkEetzjhfxbyq%2foC6Vt8emuZK7l3WevwA%3d + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -165,18 +169,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 867605 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:52 GMT + - Mon, 14 Oct 2024 22:44:22 GMT Expires: - "-1" Pragma: @@ -188,19 +192,228 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 5101725d-f914-468c-9bf5-20e8998a6be3 + - bfa723f6-dbb8-4696-b203-98f5f884e58f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002952Z:5101725d-f914-468c-9bf5-20e8998a6be3 + - WESTUS2:20241014T224423Z:bfa723f6-dbb8-4696-b203-98f5f884e58f X-Msedge-Ref: - - 'Ref A: 2A95E8664F494D17B4E8BA246CB6EB44 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:50Z' + - 'Ref A: 4670A2557ED34D448097CAF22A3A77A0 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:19Z' status: 200 OK code: 200 - duration: 1.5079454s + duration: 4.3563127s - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582659 + 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=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "582659" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 22:44: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: + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 543b7a59-dc2f-41bb-a95b-28c793161519 + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T224430Z:543b7a59-dc2f-41bb-a95b-28c793161519 + X-Msedge-Ref: + - 'Ref A: A913692D4BB54D048CDB0FA173692F7F Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:24Z' + status: 200 OK + code: 200 + duration: 6.3601942s + - id: 4 + 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 262264 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "262264" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 22:44: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: + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 6998e34f-0daf-4641-add9-e6837203cf0a + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T224433Z:6998e34f-0daf-4641-add9-e6837203cf0a + X-Msedge-Ref: + - 'Ref A: 51D92D8EC62A4A28AF36A560A373B78E Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:30Z' + status: 200 OK + code: 200 + duration: 2.7480373s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4100 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w5b7096"},"location":{"value":"eastus2"},"principalId":{"value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"14129150016731765032"}},"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.29.47.4906","templateHash":"12093210664702576480"}},"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"}},{"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-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4100" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2118 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:33Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"b64cd8efe3337727e3442a440db52c63","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-w5b7096","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w5b7096"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76/providers/Microsoft.Authorization/roleAssignments/ade4b46f-7da7-52b8-ab25-f76ccc22849d"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2118" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 22:44:34 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 71acbf14-13fd-4df9-b3a9-5574d42b6c63 + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T224435Z:71acbf14-13fd-4df9-b3a9-5574d42b6c63 + X-Msedge-Ref: + - 'Ref A: 37FC1828D2544D35BD91017A6313CD8D Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:33Z' + status: 200 OK + code: 200 + duration: 2.1429195s + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -211,7 +424,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wf2e6bc"},"location":{"value":"eastus2"},"principalId":{"value":"19a2053b-445a-4023-95d3-c339051e0f32"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"14129150016731765032"}},"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.29.47.4906","templateHash":"12093210664702576480"}},"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"}},{"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-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w5b7096"},"location":{"value":"eastus2"},"principalId":{"value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"14129150016731765032"}},"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.29.47.4906","templateHash":"12093210664702576480"}},"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"}},{"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-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"}}' form: {} headers: Accept: @@ -225,10 +438,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -238,10 +451,10 @@ interactions: trailer: {} content_length: 1470 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-wf2e6bc"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"19a2053b-445a-4023-95d3-c339051e0f32"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:29:52Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:29:54.5859774Z","duration":"PT0.000849S","correlationId":"19b9157be4b2ddeef58ecc67c1aef76b","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-wf2e6bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf2e6bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:35Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-14T22:44:38.5418947Z","duration":"PT0.000841S","correlationId":"b64cd8efe3337727e3442a440db52c63","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-w5b7096","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w5b7096"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/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-wf2e6bc-1724372970/operationStatuses/08584772338928543220?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817/operationStatuses/08584726610096234403?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -249,7 +462,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:55 GMT + - Mon, 14 Oct 2024 22:44:38 GMT Expires: - "-1" Pragma: @@ -261,21 +474,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 81481314-7edb-4d58-a38a-797b34e3bf0e + - 034effaf-7160-4875-a946-db60b5ed93a1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002955Z:81481314-7edb-4d58-a38a-797b34e3bf0e + - WESTUS2:20241014T224439Z:034effaf-7160-4875-a946-db60b5ed93a1 X-Msedge-Ref: - - 'Ref A: 34721CBFCBC3433E814EE1C25BDE7CA7 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:52Z' + - 'Ref A: BED229CF1E7D48AAB7584819B13C4B4A Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:44:35Z' status: 201 Created code: 201 - duration: 3.0839196s - - id: 4 + duration: 4.3757559s + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -294,10 +509,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970/operationStatuses/08584772338928543220?api-version=2021-04-01 + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817/operationStatuses/08584726610096234403?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -316,7 +531,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:56 GMT + - Mon, 14 Oct 2024 22:45:39 GMT Expires: - "-1" Pragma: @@ -328,19 +543,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 2a0a16cd-f9e0-4fa5-a9a2-c8ee27a9af4f + - ffd4e730-2116-4b09-bbf5-c9ebcbec6bd3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003056Z:2a0a16cd-f9e0-4fa5-a9a2-c8ee27a9af4f + - WESTUS2:20241014T224540Z:ffd4e730-2116-4b09-bbf5-c9ebcbec6bd3 X-Msedge-Ref: - - 'Ref A: 3B562B9342914AC5A34C7053D7BD0381 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:30:56Z' + - 'Ref A: 24943418575141F8B15CEDF78C295BD9 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:45:40Z' status: 200 OK code: 200 - duration: 436.8935ms - - id: 5 + duration: 357.984ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -359,10 +576,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -370,18 +587,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2069 + content_length: 2070 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-wf2e6bc"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"19a2053b-445a-4023-95d3-c339051e0f32"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:29:52Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:30:32.5740074Z","duration":"PT37.988879S","correlationId":"19b9157be4b2ddeef58ecc67c1aef76b","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-wf2e6bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf2e6bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuhtg4ux2gefpk"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk/providers/Microsoft.Authorization/roleAssignments/92d6da76-81c0-55ae-bf7b-e0438dcbc8a9"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T22:45:33.9085124Z","duration":"PT55.3674587S","correlationId":"b64cd8efe3337727e3442a440db52c63","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-w5b7096","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w5b7096"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strnzzbqtrciv76"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76/providers/Microsoft.Authorization/roleAssignments/ade4b46f-7da7-52b8-ab25-f76ccc22849d"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2069" + - "2070" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:56 GMT + - Mon, 14 Oct 2024 22:45:39 GMT Expires: - "-1" Pragma: @@ -393,19 +610,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 79cdd497-c815-4b62-a9e0-aa66b3e723a4 + - 7e642c01-ed58-4e23-b5cd-620303d6c05a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003056Z:79cdd497-c815-4b62-a9e0-aa66b3e723a4 + - WESTUS2:20241014T224540Z:7e642c01-ed58-4e23-b5cd-620303d6c05a X-Msedge-Ref: - - 'Ref A: 372AF466D41044779DD28931E2E3456E Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:30:56Z' + - 'Ref A: 532B9A4FDA81480DB64B3FCB43179F4A Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:45:40Z' status: 200 OK code: 200 - duration: 461.185ms - - id: 6 + duration: 191.2289ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -426,10 +645,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wf2e6bc%27&api-version=2021-04-01 + - b64cd8efe3337727e3442a440db52c63 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w5b7096%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -439,7 +658,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc","name":"rg-azdtest-wf2e6bc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","DeleteAfter":"2024-08-23T01:29:52Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096","name":"rg-azdtest-w5b7096","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","DeleteAfter":"2024-10-14T23:44:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -448,7 +667,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:56 GMT + - Mon, 14 Oct 2024 22:45:40 GMT Expires: - "-1" Pragma: @@ -460,19 +679,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b64cd8efe3337727e3442a440db52c63 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 66716cec-9f8a-4785-b19c-cc5a504be9eb + - 393e63f6-1601-4955-8787-c4a03c66f63a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003057Z:66716cec-9f8a-4785-b19c-cc5a504be9eb + - WESTUS2:20241014T224541Z:393e63f6-1601-4955-8787-c4a03c66f63a X-Msedge-Ref: - - 'Ref A: 44F8B9A1C0F44523904B77318841FA41 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:30:56Z' + - 'Ref A: 23EB357C3A75481F828495D463CBA6B7 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:45:40Z' status: 200 OK code: 200 - duration: 69.7392ms - - id: 7 + duration: 96.8657ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -493,9 +714,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -504,18 +725,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2148316 + content_length: 2179311 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=3ZFNa4QwEIZ%2fy%2basYLSFsrfaZEs%2fZtLExGJvi7WLH0RoXaIu%2fvfq2j32XOhp5mUeBh7eE8lb25X2uO%2fK1uq2LuwX2Z4Iv020SZbNFn33sv%2fsygV4KgayJXRzs0Gd9TBmPvHOhGrd5UajcKPqXQzs4KR5Y2DkFbI4VqxhMkh3YHiAOmZSp3eo3z8URfGcBE4wM3N5hCwLhTZzPjioeIgDlTroHyVtuEpj0LRBZa6NqNJ7rDI6M4HQPITxYf67TBjA%2bT6ZvB%2bN8M88cMwdjDLCqg6x%2fN0DdBbBaCKh8wEZdzjCnOXic%2fZ45f%2bijlVjrsMem8Yja4zWOE3f","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","location":"eastus2","name":"azdtest-wf2e6bc-1724372970","properties":{"correlationId":"19b9157be4b2ddeef58ecc67c1aef76b","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc","resourceName":"rg-azdtest-wf2e6bc","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT37.988879S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk/providers/Microsoft.Authorization/roleAssignments/92d6da76-81c0-55ae-bf7b-e0438dcbc8a9"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuhtg4ux2gefpk"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-08-23T01:29:52Z"},"environmentName":{"type":"String","value":"azdtest-wf2e6bc"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"19a2053b-445a-4023-95d3-c339051e0f32"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"14129150016731765032","timestamp":"2024-08-23T00:30:32.5740074Z"},"tags":{"azd-env-name":"azdtest-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","location":"eastus2","name":"azdtest-w5b7096-1728945817","properties":{"correlationId":"b64cd8efe3337727e3442a440db52c63","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096","resourceName":"rg-azdtest-w5b7096","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT55.3674587S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76/providers/Microsoft.Authorization/roleAssignments/ade4b46f-7da7-52b8-ab25-f76ccc22849d"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strnzzbqtrciv76"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:35Z"},"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"14129150016731765032","timestamp":"2024-10-14T22:45:33.9085124Z"},"tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2148316" + - "2179311" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:07 GMT + - Mon, 14 Oct 2024 22:45:57 GMT Expires: - "-1" Pragma: @@ -527,19 +748,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - ba7ddcce-706a-4901-af59-03fe8f326845 + - 05d436ec-4364-4401-8ccb-126234a59879 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003107Z:ba7ddcce-706a-4901-af59-03fe8f326845 + - WESTUS2:20241014T224558Z:05d436ec-4364-4401-8ccb-126234a59879 X-Msedge-Ref: - - 'Ref A: C0E814A2D0E74D818C5709D7D67B449F Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:01Z' + - 'Ref A: 22EA65176B544F0ABB61E60E4FCE688F Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:45:51Z' status: 200 OK code: 200 - duration: 5.5021174s - - id: 8 + duration: 6.5792627s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -558,10 +781,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZFNa4QwEIZ%2fy%2basYLSFsrfaZEs%2fZtLExGJvi7WLH0RoXaIu%2fvfq2j32XOhp5mUeBh7eE8lb25X2uO%2fK1uq2LuwX2Z4Iv020SZbNFn33sv%2fsygV4KgayJXRzs0Gd9TBmPvHOhGrd5UajcKPqXQzs4KR5Y2DkFbI4VqxhMkh3YHiAOmZSp3eo3z8URfGcBE4wM3N5hCwLhTZzPjioeIgDlTroHyVtuEpj0LRBZa6NqNJ7rDI6M4HQPITxYf67TBjA%2bT6ZvB%2bN8M88cMwdjDLCqg6x%2fN0DdBbBaCKh8wEZdzjCnOXic%2fZ45f%2bijlVjrsMem8Yja4zWOE3f + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -569,18 +792,152 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326047 + content_length: 867605 + 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=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "867605" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 22:46: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: + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a724ebe7-713f-4d06-bbc5-afe510102db1 + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T224603Z:a724ebe7-713f-4d06-bbc5-afe510102db1 + X-Msedge-Ref: + - 'Ref A: EAB7989C3E044FB2824E927110C00C21 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:45:58Z' + status: 200 OK + code: 200 + duration: 5.318069s + - 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-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582659 + 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=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "582659" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 14 Oct 2024 22:46: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: + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 5f2f7cfc-8824-4645-be60-aeb1bf3dd17d + X-Ms-Routing-Request-Id: + - WESTUS2:20241014T224608Z:5f2f7cfc-8824-4645-be60-aeb1bf3dd17d + X-Msedge-Ref: + - 'Ref A: B7BF80E1A32C4BDAAF6610BA27F1711F Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:03Z' + status: 200 OK + code: 200 + duration: 4.1905255s + - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "326047" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:08 GMT + - Mon, 14 Oct 2024 22:46:09 GMT Expires: - "-1" Pragma: @@ -592,19 +949,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - beceab3b-6d71-4fbc-87ea-91ae4736644f + - f9afabd4-6970-4a4f-9777-ced70240a8a4 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003108Z:beceab3b-6d71-4fbc-87ea-91ae4736644f + - WESTUS2:20241014T224610Z:f9afabd4-6970-4a4f-9777-ced70240a8a4 X-Msedge-Ref: - - 'Ref A: 84FBB74C38BB4217A37975E03E13F49C Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:07Z' + - 'Ref A: 22A20E566F634EA9A6AF5F41F696E2FE Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:08Z' status: 200 OK code: 200 - duration: 1.4850557s - - id: 9 + duration: 2.4835249s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -625,10 +984,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -636,18 +995,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2069 + content_length: 2070 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-wf2e6bc"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"19a2053b-445a-4023-95d3-c339051e0f32"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:29:52Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:30:32.5740074Z","duration":"PT37.988879S","correlationId":"19b9157be4b2ddeef58ecc67c1aef76b","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-wf2e6bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf2e6bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuhtg4ux2gefpk"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk/providers/Microsoft.Authorization/roleAssignments/92d6da76-81c0-55ae-bf7b-e0438dcbc8a9"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T22:45:33.9085124Z","duration":"PT55.3674587S","correlationId":"b64cd8efe3337727e3442a440db52c63","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-w5b7096","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w5b7096"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strnzzbqtrciv76"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76/providers/Microsoft.Authorization/roleAssignments/ade4b46f-7da7-52b8-ab25-f76ccc22849d"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2069" + - "2070" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:08 GMT + - Mon, 14 Oct 2024 22:46:10 GMT Expires: - "-1" Pragma: @@ -659,19 +1018,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 9bd5aa4f-6f3e-4e38-afd6-502566e05985 + - 1e9f5de9-29b2-4956-9b65-d85fea792829 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003109Z:9bd5aa4f-6f3e-4e38-afd6-502566e05985 + - WESTUS2:20241014T224611Z:1e9f5de9-29b2-4956-9b65-d85fea792829 X-Msedge-Ref: - - 'Ref A: 3396469BEFB444CF8A83A615B07DD2DC Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:08Z' + - 'Ref A: E46AEEF938C242C9951F08776E04C0D6 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:10Z' status: 200 OK code: 200 - duration: 188.988ms - - id: 10 + duration: 273.6633ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -692,10 +1053,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wf2e6bc%27&api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w5b7096%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -705,7 +1066,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc","name":"rg-azdtest-wf2e6bc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","DeleteAfter":"2024-08-23T01:29:52Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096","name":"rg-azdtest-w5b7096","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","DeleteAfter":"2024-10-14T23:44:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -714,7 +1075,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:09 GMT + - Mon, 14 Oct 2024 22:46:10 GMT Expires: - "-1" Pragma: @@ -726,19 +1087,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 77e6de7a-a6f2-49fc-b99e-9c82b449fd4e + - 529146cd-8206-4a85-abd9-d7322d4aad54 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003109Z:77e6de7a-a6f2-49fc-b99e-9c82b449fd4e + - WESTUS2:20241014T224611Z:529146cd-8206-4a85-abd9-d7322d4aad54 X-Msedge-Ref: - - 'Ref A: 481063EE5C534DF78EB78CCFEB9E661D Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:09Z' + - 'Ref A: ABBDDC108BD34D1CA637A613A37CB100 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:11Z' status: 200 OK code: 200 - duration: 77.8723ms - - id: 11 + duration: 66.9547ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -759,10 +1122,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/resources?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -772,7 +1135,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk","name":"stuhtg4ux2gefpk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76","name":"strnzzbqtrciv76","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096"}}]}' headers: Cache-Control: - no-cache @@ -781,7 +1144,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:09 GMT + - Mon, 14 Oct 2024 22:46:10 GMT Expires: - "-1" Pragma: @@ -793,19 +1156,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 720ec1f1-e7f2-4c5b-a188-23d2648aa9a7 + - c1c916d0-fc72-40ac-9442-7d4326b79122 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003109Z:720ec1f1-e7f2-4c5b-a188-23d2648aa9a7 + - WESTUS2:20241014T224611Z:c1c916d0-fc72-40ac-9442-7d4326b79122 X-Msedge-Ref: - - 'Ref A: 88365C9036EB4DD1B56B9C35A2507548 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:09Z' + - 'Ref A: F787F0A5B2A545A798F4B7FFD0A0E2F8 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:11Z' status: 200 OK code: 200 - duration: 749.4663ms - - id: 12 + duration: 270.1598ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -826,10 +1191,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -837,18 +1202,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2069 + content_length: 2070 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-wf2e6bc"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"19a2053b-445a-4023-95d3-c339051e0f32"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:29:52Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:30:32.5740074Z","duration":"PT37.988879S","correlationId":"19b9157be4b2ddeef58ecc67c1aef76b","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-wf2e6bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf2e6bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuhtg4ux2gefpk"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk/providers/Microsoft.Authorization/roleAssignments/92d6da76-81c0-55ae-bf7b-e0438dcbc8a9"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T22:45:33.9085124Z","duration":"PT55.3674587S","correlationId":"b64cd8efe3337727e3442a440db52c63","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-w5b7096","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w5b7096"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strnzzbqtrciv76"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76/providers/Microsoft.Authorization/roleAssignments/ade4b46f-7da7-52b8-ab25-f76ccc22849d"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2069" + - "2070" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:10 GMT + - Mon, 14 Oct 2024 22:46:10 GMT Expires: - "-1" Pragma: @@ -860,19 +1225,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 1b8e1386-1449-43d3-a3f6-a7ae1d04b902 + - 3d6f3e67-a113-4e5e-9c89-ec11e14ae828 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003110Z:1b8e1386-1449-43d3-a3f6-a7ae1d04b902 + - WESTUS2:20241014T224611Z:3d6f3e67-a113-4e5e-9c89-ec11e14ae828 X-Msedge-Ref: - - 'Ref A: BB5954EAFA5247F2885C7CC3CA017AF2 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:10Z' + - 'Ref A: 7139D20EDCAE4527AD69853503A08A0A Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:11Z' status: 200 OK code: 200 - duration: 272.9074ms - - id: 13 + duration: 304.7373ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -893,10 +1260,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wf2e6bc%27&api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w5b7096%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -906,7 +1273,7 @@ interactions: trailer: {} content_length: 325 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc","name":"rg-azdtest-wf2e6bc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","DeleteAfter":"2024-08-23T01:29:52Z"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096","name":"rg-azdtest-w5b7096","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","DeleteAfter":"2024-10-14T23:44:35Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -915,7 +1282,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:10 GMT + - Mon, 14 Oct 2024 22:46:10 GMT Expires: - "-1" Pragma: @@ -927,19 +1294,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - adeb23f8-874f-4041-910a-70d977c3bc69 + - 96829eb0-40c9-4743-9451-409c06179b91 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003110Z:adeb23f8-874f-4041-910a-70d977c3bc69 + - WESTUS2:20241014T224611Z:96829eb0-40c9-4743-9451-409c06179b91 X-Msedge-Ref: - - 'Ref A: FE2E899AF4604A318D4D7D858D57B1CD Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:10Z' + - 'Ref A: D7B2E190CB0D4CB4880C82F64AC7B448 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:11Z' status: 200 OK code: 200 - duration: 66.1864ms - - id: 14 + duration: 107.0654ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -960,10 +1329,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/resources?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -973,7 +1342,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"type":"Microsoft.Storage/storageAccounts","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk","name":"stuhtg4ux2gefpk","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76","name":"strnzzbqtrciv76","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096"}}]}' headers: Cache-Control: - no-cache @@ -982,7 +1351,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:10 GMT + - Mon, 14 Oct 2024 22:46:11 GMT Expires: - "-1" Pragma: @@ -994,19 +1363,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 2d6409f7-9d39-43c9-9335-d3931f5fe876 + - 486fc1e0-b353-4a7d-b734-dc27bbe7045d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003111Z:2d6409f7-9d39-43c9-9335-d3931f5fe876 + - WESTUS2:20241014T224612Z:486fc1e0-b353-4a7d-b734-dc27bbe7045d X-Msedge-Ref: - - 'Ref A: B6233A6D37DD47E09D06A0224BF47D17 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:10Z' + - 'Ref A: 6112EF3B372D4DF3822805742101348F Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:11Z' status: 200 OK code: 200 - duration: 609.5469ms - - id: 15 + duration: 193.4891ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1027,10 +1398,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wf2e6bc?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w5b7096?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1047,11 +1418,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:31:12 GMT + - Mon, 14 Oct 2024 22:46:12 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRjJFNkJDLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599699334269878&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=mxgxXOttASxEvlil2-CKkNLoPT3cyxJgZzyNC4fjFhUlqoz8gR7oePajl6bvEnUEfIvusv7SLLjp8ZnY5taES-V83lONbQu5bfuf71N-XN8n4XJZ_ehLx5q05OCz5YQcgt8InAj0OyRHli4vrk8DNpinIgiwSq-RJ5SkfVuZCNnz-nZuJodCiq0mpZAztiEAwuD68R0gN8ct8IE9Kh_i0MFMHbtUMnkKLOaNISPwFuWI0VPCueNmh8CydI1B9UJ_M80fMgUKNcPGT-lMmhOPmQFKyAY6TqsRTn5unqtg3Dzwa8JO-LIJezHLZGFx-21Dwz9aVzT7R1HQbgQFL58rUA&h=Eoia2McpGJftGgLiesVF2gPaXL0iXRmGKLvMrg4nCcI + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNUI3MDk2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645428966765174&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=JRllNqBFiO1y31zX8mps3pwTucrnTF1qDSHNtLTT7z2zsLDNqaVUrZGeSGKAz9ai1gjQqgOZaKK7Kq6erIWj1M6zxuLEIWQLNoBxqI-8ZN3_2nRiKy6lT6PZZmihEQWawr-xdV1w3C4v4sD9tHKHAMLkvTyvar6r6k5qKEqhlyffVqAhWXju4nzlxUP9BBY-KzGP6OA9cqL2m9KkPBHUxlGTPJMfCkq0-JBUCdnzbtr33MQORjnK-Ep0BjlI-hzAE392fw6zN5uSblA_6GOu4gxX7x9CY7y4b9rTdu7GsZ0AYXDbiscMG6I89JXpytZW2qavpSbXjbiNC1J2fPNGLw&h=kjIJBH3XrAv7_CTorhs2PmiMpny6MQuwGlmXr_p1-sQ Pragma: - no-cache Retry-After: @@ -1063,19 +1434,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - 480bbcf8-a348-4172-a327-0a3fc4a61c71 + - 1d85617d-8707-47cd-8db7-6612b27d88d0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003112Z:480bbcf8-a348-4172-a327-0a3fc4a61c71 + - WESTUS2:20241014T224613Z:1d85617d-8707-47cd-8db7-6612b27d88d0 X-Msedge-Ref: - - 'Ref A: 6364753D485649068C6C1885FB1DDD83 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:11Z' + - 'Ref A: 719DA4FAE5324B159DC068317895D04B Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:46:12Z' status: 202 Accepted code: 202 - duration: 1.4890162s - - id: 16 + duration: 1.5157446s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1094,10 +1467,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRjJFNkJDLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599699334269878&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=mxgxXOttASxEvlil2-CKkNLoPT3cyxJgZzyNC4fjFhUlqoz8gR7oePajl6bvEnUEfIvusv7SLLjp8ZnY5taES-V83lONbQu5bfuf71N-XN8n4XJZ_ehLx5q05OCz5YQcgt8InAj0OyRHli4vrk8DNpinIgiwSq-RJ5SkfVuZCNnz-nZuJodCiq0mpZAztiEAwuD68R0gN8ct8IE9Kh_i0MFMHbtUMnkKLOaNISPwFuWI0VPCueNmh8CydI1B9UJ_M80fMgUKNcPGT-lMmhOPmQFKyAY6TqsRTn5unqtg3Dzwa8JO-LIJezHLZGFx-21Dwz9aVzT7R1HQbgQFL58rUA&h=Eoia2McpGJftGgLiesVF2gPaXL0iXRmGKLvMrg4nCcI + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNUI3MDk2LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645428966765174&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=JRllNqBFiO1y31zX8mps3pwTucrnTF1qDSHNtLTT7z2zsLDNqaVUrZGeSGKAz9ai1gjQqgOZaKK7Kq6erIWj1M6zxuLEIWQLNoBxqI-8ZN3_2nRiKy6lT6PZZmihEQWawr-xdV1w3C4v4sD9tHKHAMLkvTyvar6r6k5qKEqhlyffVqAhWXju4nzlxUP9BBY-KzGP6OA9cqL2m9KkPBHUxlGTPJMfCkq0-JBUCdnzbtr33MQORjnK-Ep0BjlI-hzAE392fw6zN5uSblA_6GOu4gxX7x9CY7y4b9rTdu7GsZ0AYXDbiscMG6I89JXpytZW2qavpSbXjbiNC1J2fPNGLw&h=kjIJBH3XrAv7_CTorhs2PmiMpny6MQuwGlmXr_p1-sQ method: GET response: proto: HTTP/2.0 @@ -1114,7 +1487,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:32:28 GMT + - Mon, 14 Oct 2024 22:48:31 GMT Expires: - "-1" Pragma: @@ -1126,19 +1499,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 2f625e38-032c-44b0-9cbf-74c6761668d1 + - 9ebda791-8e87-4c8f-a1a7-069aff3659ae X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003228Z:2f625e38-032c-44b0-9cbf-74c6761668d1 + - WESTUS2:20241014T224831Z:9ebda791-8e87-4c8f-a1a7-069aff3659ae X-Msedge-Ref: - - 'Ref A: EF299D1D4A724CD098AAA2A649EF8A1C Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:32:28Z' + - 'Ref A: 2F2EEFB11BD64508A27A46698B844209 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:48:31Z' status: 200 OK code: 200 - duration: 183.9741ms - - id: 17 + duration: 209.4989ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1159,10 +1534,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1170,18 +1545,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2069 + content_length: 2070 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wf2e6bc","azd-provision-param-hash":"33cfcd42b11db7fd97f4d13bdca1b2fcf06e69af96837ae8bc64a44e7a05e68b"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-wf2e6bc"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"19a2053b-445a-4023-95d3-c339051e0f32"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:29:52Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:30:32.5740074Z","duration":"PT37.988879S","correlationId":"19b9157be4b2ddeef58ecc67c1aef76b","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-wf2e6bc","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wf2e6bc"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stuhtg4ux2gefpk"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wf2e6bc/providers/Microsoft.Storage/storageAccounts/stuhtg4ux2gefpk/providers/Microsoft.Authorization/roleAssignments/92d6da76-81c0-55ae-bf7b-e0438dcbc8a9"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w5b7096","azd-provision-param-hash":"0d8bc5520ac847812b10f7fc88900ebe6ae8d3091e17e4c9d4284b7d5fdce697"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w5b7096"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-10-14T23:44:35Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T22:45:33.9085124Z","duration":"PT55.3674587S","correlationId":"b64cd8efe3337727e3442a440db52c63","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-w5b7096","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w5b7096"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"strnzzbqtrciv76"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w5b7096/providers/Microsoft.Storage/storageAccounts/strnzzbqtrciv76/providers/Microsoft.Authorization/roleAssignments/ade4b46f-7da7-52b8-ab25-f76ccc22849d"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2069" + - "2070" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:32:28 GMT + - Mon, 14 Oct 2024 22:48:32 GMT Expires: - "-1" Pragma: @@ -1193,19 +1568,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b2251134-642f-4cf9-a7cb-b9b1c92c6b17 + - 0590e332-ce08-4048-82c6-a01cfeaaf930 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003228Z:b2251134-642f-4cf9-a7cb-b9b1c92c6b17 + - WESTUS2:20241014T224832Z:0590e332-ce08-4048-82c6-a01cfeaaf930 X-Msedge-Ref: - - 'Ref A: B2F20C44FB854A60BBD5A9185761867E Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:32:28Z' + - 'Ref A: A8EA1F28F3414F0E9F331D2C603BAF00 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:48:31Z' status: 200 OK code: 200 - duration: 239.8586ms - - id: 18 + duration: 399.3214ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1216,7 +1593,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-wf2e6bc"}}' + 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-w5b7096"}}' form: {} headers: Accept: @@ -1230,10 +1607,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1241,20 +1618,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 569 + content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wf2e6bc"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:32:30.6294685Z","duration":"PT0.000833S","correlationId":"2a0ea63e4c5e51a01ffe0035f4afe71d","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w5b7096"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-14T22:48:35.7841736Z","duration":"PT0.0007793S","correlationId":"282353515fe875a11d40cd9fe1df3319","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970/operationStatuses/08584772337358500714?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817/operationStatuses/08584726607724593924?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "569" + - "570" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:32:30 GMT + - Mon, 14 Oct 2024 22:48:36 GMT Expires: - "-1" Pragma: @@ -1266,21 +1643,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 4827f6e7-44c0-4394-984b-3d8df9d8a2be + - 84fb77b9-19f8-46c3-bb5c-295e479cd1d7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003231Z:4827f6e7-44c0-4394-984b-3d8df9d8a2be + - WESTUS2:20241014T224836Z:84fb77b9-19f8-46c3-bb5c-295e479cd1d7 X-Msedge-Ref: - - 'Ref A: 9304E5AE2C2344E181EB1B41F7D88B2C Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:32:28Z' + - 'Ref A: 3EE2440A6F3E46699560E9C16FC8D74B Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:48:32Z' status: 200 OK code: 200 - duration: 2.1783334s - - id: 19 + duration: 3.9092705s + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1299,10 +1678,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970/operationStatuses/08584772337358500714?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817/operationStatuses/08584726607724593924?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1321,7 +1700,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:33:01 GMT + - Mon, 14 Oct 2024 22:49:06 GMT Expires: - "-1" Pragma: @@ -1333,19 +1712,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 67f4f78a-aac8-42a9-b189-98d007a6d09b + - 1892352e-47c5-4ec8-ad75-860bc2fac9df X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003301Z:67f4f78a-aac8-42a9-b189-98d007a6d09b + - WESTUS2:20241014T224906Z:1892352e-47c5-4ec8-ad75-860bc2fac9df X-Msedge-Ref: - - 'Ref A: 73FD7DFEEE57418BA1A02A8EEB6655F2 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:33:01Z' + - 'Ref A: 5614166033DB4B5CA1EED3886BFE52B5 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:49:06Z' status: 200 OK code: 200 - duration: 407.2506ms - - id: 20 + duration: 197.8466ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1364,10 +1745,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970?api-version=2021-04-01 + - 282353515fe875a11d40cd9fe1df3319 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1375,18 +1756,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 606 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wf2e6bc-1724372970","name":"azdtest-wf2e6bc-1724372970","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wf2e6bc"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:32:33.2662685Z","duration":"PT2.637633S","correlationId":"2a0ea63e4c5e51a01ffe0035f4afe71d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w5b7096-1728945817","name":"azdtest-w5b7096-1728945817","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w5b7096"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-14T22:48:50.5248449Z","duration":"PT14.7414506S","correlationId":"282353515fe875a11d40cd9fe1df3319","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "606" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:33:01 GMT + - Mon, 14 Oct 2024 22:49:07 GMT Expires: - "-1" Pragma: @@ -1398,19 +1779,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - 282353515fe875a11d40cd9fe1df3319 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7c569838-37e7-4185-aaf4-59d7a2a44cb1 + - 25ee0ae9-9e07-4690-8eab-83d0fd17a27a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003302Z:7c569838-37e7-4185-aaf4-59d7a2a44cb1 + - WESTUS2:20241014T224907Z:25ee0ae9-9e07-4690-8eab-83d0fd17a27a X-Msedge-Ref: - - 'Ref A: 42D823AFAC7A48B58D1A70DEC405E5E5 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:33:01Z' + - 'Ref A: 984E6472DB7945A3A87B9F6F4EFE3DC5 Ref B: CO6AA3150220027 Ref C: 2024-10-14T22:49:06Z' status: 200 OK code: 200 - duration: 456.8387ms + duration: 241.8701ms --- -env_name: azdtest-wf2e6bc +env_name: azdtest-w5b7096 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372970" +time: "1728945817" 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 a0862add083..023f3b6f066 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: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.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.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://strnzzbqtrciv76.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\x75\x68\x74\x67\x34\x75\x78\x32\x67\x65\x66\x70\x6B\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\x6E\x7A\x7A\x62\x71\x74\x72\x63\x69\x76\x37\x36\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: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c28907da-e01e-0011-58f3-f4752a000000 + - d69bea53-d01e-001d-448a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 771.9815ms + duration: 1.3518868s - id: 1 request: proto: HTTP/1.1 @@ -59,7 +59,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.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.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest?restype=container + url: https://strnzzbqtrciv76.blob.core.windows.net:443/azdtest?restype=container method: PUT response: proto: HTTP/1.1 @@ -92,20 +92,20 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:43 GMT Etag: - - '"0x8DCC30ADC3A43C0"' + - '"0x8DCECA1EFA41629"' Last-Modified: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 14 Oct 2024 22:45:43 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890994-e01e-0011-49f3-f4752a000000 + - d69bec6d-d01e-001d-338a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 201 Created code: 201 - duration: 92.6285ms + duration: 378.2464ms - id: 2 request: proto: HTTP/1.1 @@ -114,7 +114,7 @@ interactions: content_length: 10 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.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.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Blob-Type: - BlockBlob X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest/test-env/.env + url: https://strnzzbqtrciv76.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: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:43 GMT Etag: - - '"0x8DCC30ADC484141"' + - '"0x8DCECA1EFC6C1F0"' Last-Modified: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 14 Oct 2024 22:45:43 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Content-Crc64: - Nhk5cnMs4SM= X-Ms-Request-Id: - - c28909d8-e01e-0011-05f3-f4752a000000 + - d69bece1-d01e-001d-228a-1ee89f000000 X-Ms-Request-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 201 Created code: 201 - duration: 85.3153ms + duration: 214.678ms - id: 3 request: proto: HTTP/1.1 @@ -180,7 +180,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -193,10 +193,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://strnzzbqtrciv76.blob.core.windows.net:443/?comp=list method: GET response: proto: HTTP/1.1 @@ -207,21 +207,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\x75\x68\x74\x67\x34\x75\x78\x32\x67\x65\x66\x70\x6B\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\x46\x72\x69\x2C\x20\x32\x33\x20\x41\x75\x67\x20\x32\x30\x32\x34\x20\x30\x30\x3A\x33\x30\x3A\x35\x39\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\x43\x43\x33\x30\x41\x44\x43\x33\x41\x34\x33\x43\x30\"\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\x6E\x7A\x7A\x62\x71\x74\x72\x63\x69\x76\x37\x36\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\x4D\x6F\x6E\x2C\x20\x31\x34\x20\x4F\x63\x74\x20\x32\x30\x32\x34\x20\x32\x32\x3A\x34\x35\x3A\x34\x33\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\x43\x45\x43\x41\x31\x45\x46\x41\x34\x31\x36\x32\x39\"\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: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:43 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890a1b-e01e-0011-3df3-f4752a000000 + - d69bede6-d01e-001d-188a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 82.513ms + duration: 359.1462ms - id: 4 request: proto: HTTP/1.1 @@ -230,7 +230,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -243,10 +243,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest/test-env/.env + url: https://strnzzbqtrciv76.blob.core.windows.net:443/azdtest/test-env/.env method: GET response: proto: HTTP/1.1 @@ -268,30 +268,30 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:44 GMT Etag: - - '"0x8DCC30ADC484141"' + - '"0x8DCECA1EFC6C1F0"' Last-Modified: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 14 Oct 2024 22:45:43 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Type: - BlockBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 14 Oct 2024 22:45:43 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - c2890a5b-e01e-0011-7af3-f4752a000000 + - d69beeed-d01e-001d-148a-1ee89f000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.8975ms + duration: 363.0094ms - id: 5 request: proto: HTTP/1.1 @@ -300,7 +300,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -313,10 +313,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://strnzzbqtrciv76.blob.core.windows.net:443/?comp=list method: GET response: proto: HTTP/1.1 @@ -327,21 +327,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\x75\x68\x74\x67\x34\x75\x78\x32\x67\x65\x66\x70\x6B\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\x46\x72\x69\x2C\x20\x32\x33\x20\x41\x75\x67\x20\x32\x30\x32\x34\x20\x30\x30\x3A\x33\x30\x3A\x35\x39\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\x43\x43\x33\x30\x41\x44\x43\x33\x41\x34\x33\x43\x30\"\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\x6E\x7A\x7A\x62\x71\x74\x72\x63\x69\x76\x37\x36\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\x4D\x6F\x6E\x2C\x20\x31\x34\x20\x4F\x63\x74\x20\x32\x30\x32\x34\x20\x32\x32\x3A\x34\x35\x3A\x34\x33\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\x43\x45\x43\x41\x31\x45\x46\x41\x34\x31\x36\x32\x39\"\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: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890ab0-e01e-0011-37f3-f4752a000000 + - d69beff6-d01e-001d-118a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 81.6615ms + duration: 355.3996ms - id: 6 request: proto: HTTP/1.1 @@ -350,7 +350,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -363,10 +363,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest?comp=list&restype=container + url: https://strnzzbqtrciv76.blob.core.windows.net:443/azdtest?comp=list&restype=container method: GET response: proto: HTTP/1.1 @@ -377,21 +377,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\x75\x68\x74\x67\x34\x75\x78\x32\x67\x65\x66\x70\x6B\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\x46\x72\x69\x2C\x20\x32\x33\x20\x41\x75\x67\x20\x32\x30\x32\x34\x20\x30\x30\x3A\x33\x30\x3A\x35\x39\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\x46\x72\x69\x2C\x20\x32\x33\x20\x41\x75\x67\x20\x32\x30\x32\x34\x20\x30\x30\x3A\x33\x30\x3A\x35\x39\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\x43\x43\x33\x30\x41\x44\x43\x34\x38\x34\x31\x34\x31\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" + 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\x6E\x7A\x7A\x62\x71\x74\x72\x63\x69\x76\x37\x36\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\x4D\x6F\x6E\x2C\x20\x31\x34\x20\x4F\x63\x74\x20\x32\x30\x32\x34\x20\x32\x32\x3A\x34\x35\x3A\x34\x33\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\x4D\x6F\x6E\x2C\x20\x31\x34\x20\x4F\x63\x74\x20\x32\x30\x32\x34\x20\x32\x32\x3A\x34\x35\x3A\x34\x33\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\x43\x45\x43\x41\x31\x45\x46\x43\x36\x43\x31\x46\x30\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: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890afd-e01e-0011-7af3-f4752a000000 + - d69bf0e3-d01e-001d-6c8a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 83.5372ms + duration: 369.749ms - id: 7 request: proto: HTTP/1.1 @@ -400,7 +400,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -413,10 +413,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://strnzzbqtrciv76.blob.core.windows.net:443/?comp=list method: GET response: proto: HTTP/1.1 @@ -427,21 +427,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\x75\x68\x74\x67\x34\x75\x78\x32\x67\x65\x66\x70\x6B\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\x46\x72\x69\x2C\x20\x32\x33\x20\x41\x75\x67\x20\x32\x30\x32\x34\x20\x30\x30\x3A\x33\x30\x3A\x35\x39\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\x43\x43\x33\x30\x41\x44\x43\x33\x41\x34\x33\x43\x30\"\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\x6E\x7A\x7A\x62\x71\x74\x72\x63\x69\x76\x37\x36\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\x4D\x6F\x6E\x2C\x20\x31\x34\x20\x4F\x63\x74\x20\x32\x30\x32\x34\x20\x32\x32\x3A\x34\x35\x3A\x34\x33\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\x43\x45\x43\x41\x31\x45\x46\x41\x34\x31\x36\x32\x39\"\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: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:45 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890b66-e01e-0011-56f3-f4752a000000 + - d69bf1e1-d01e-001d-4f8a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 82.7616ms + duration: 361.1719ms - id: 8 request: proto: HTTP/1.1 @@ -450,7 +450,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: stuhtg4ux2gefpk.blob.core.windows.net + host: strnzzbqtrciv76.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -463,10 +463,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azblob/v1.3.1 (go1.21.6; Windows_NT) + - azsdk-go-azblob/v1.3.1 (go1.23.0; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest/test-env/.env + url: https://strnzzbqtrciv76.blob.core.windows.net:443/azdtest/test-env/.env method: DELETE response: proto: HTTP/1.1 @@ -481,17 +481,17 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:30:58 GMT + - Mon, 14 Oct 2024 22:45:45 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Delete-Type-Permanent: - "true" X-Ms-Request-Id: - - c2890bd3-e01e-0011-39f3-f4752a000000 + - d69bf2b8-d01e-001d-098a-1ee89f000000 X-Ms-Version: - "2023-11-03" status: 202 Accepted code: 202 - duration: 90.4986ms + duration: 359.3073ms --- -time: "1724373056" +time: "1728945940" From 5ad148bf1773c1c0130acec1591847892e552884 Mon Sep 17 00:00:00 2001 From: hemarina Date: Mon, 14 Oct 2024 20:05:54 -0700 Subject: [PATCH 11/13] recording provision test --- .../recordings/Test_CLI_ProvisionState.yaml | 3060 ++++++----------- .../Test_CLI_ProvisionStateWithDown.yaml | 2316 +++++++++---- 2 files changed, 2696 insertions(+), 2680 deletions(-) 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 0aa8c15f32b..92d95c42627 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml @@ -24,7 +24,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -44,7 +44,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:23 GMT + - Tue, 15 Oct 2024 01:51:39 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 233130bd-be0e-4bfe-92f9-92c3421f15d0 + - ddf373b4-2207-4dfc-bd20-c9cebc551799 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173524Z:233130bd-be0e-4bfe-92f9-92c3421f15d0 + - WESTUS2:20241015T015140Z:ddf373b4-2207-4dfc-bd20-c9cebc551799 X-Msedge-Ref: - - 'Ref A: A231FE72EB7149529ED55BBF037C246C Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:21Z' + - 'Ref A: B27E9822E5DB490EBBEADE0DD4EB0BBB Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:51:36Z' status: 200 OK code: 200 - duration: 3.0025906s + duration: 3.4726825s - id: 1 request: proto: HTTP/1.1 @@ -79,7 +81,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wb68583"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}},"whatIfSettings":{}}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}},"whatIfSettings":{}}}' form: {} headers: Accept: @@ -95,8 +97,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/whatIf?api-version=2021-04-01 + - 66987b3ee31f61486df78432943511a9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/whatIf?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -113,11 +115,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 19 Sep 2024 17:35:24 GMT + - Tue, 15 Oct 2024 01:51:41 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXQjY4NTgzOjJEMTcyNjc2NzMxNi0zNDdEQjc5MzoyRDgxMUE6MkQ0QkIzOjJEOTQzNzoyRDQ2NkYwMEU2MzU2RSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638623641257004640&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=mjUgbUDg6bwWP-hcCwYvDjLJR8XAm_XVO1adWNR9JY02wMqTXXd_t7jcAIUkQ3ihnN2MkIgchAhNY7ZXerctI04a4yIPe5Dlndxnd7xV4CLr14BxokzxUySJXN5ySYs7QnCHIVzzoH5KR3SXUgL2HbxdFGhq7BSfPGcH0-OPWvqKcTLXfaY9CJ0MB8shqZoku_PiaEzsRtARmzg1spvsYu9GFrsSQ5NtHCivn84Na7ATQX-WdOUkUV-YMrwiHoCLmrLskP7Z2d8JgDOD6k7nPlHGvowTpRzEFc1zwQ6T_zDUCIWf8XukuaJCNE8S0ZAycnRtFkLHq8PXgn-inTGPZA&h=EV9ALg3pSVqXa3HXoZUAMl3duUGhK1XkvXg06-UaAeQ + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXM0UzQUI0OjJEMTcyODk1NzA1OC0xOEVDNzU3MDoyREREQTc6MkQ0RTlGOjJEOUJBQjoyRDA3RjAxNTE4RDZGQSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638645539015699350&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=OjdNznfteAuH1Q1cu7FBqVMZYCxdg_tWtWtE6MSwIxkQQMnuj2mnB6m271WovyPfbAEBp1tjCYTSxrAiKl34El4xfIEW0sjfsSv8BYZKBtUuaHhIpTw-RK16Gie73WpdrXpEtc0jQ-LPhLnlgyZ213qOSzNH8KLPxDJH0s8hQzOm0jooKwCTnYfO0CMjcLh5bjh6HlQSEOGnCxxjHjMFuvv9dXPhWC4x9lHySFvjOYsR6udnlGU0pHHxhnbHIBOoaqxox_fc34xNQDimrLvBvX2AEYy_H9-Y5TjaI_myKpeEQLITWtHKTl9rMkPDdsdABwiv8q_oo0n1I2QDzIa1qQ&h=UKT7kVuTSC6M_m1kSyDVdFrfF4YXsddfXkOQbYiSowc Pragma: - no-cache Retry-After: @@ -129,18 +131,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 347db793-811a-4bb3-9437-466f00e6356e + - 18ec7570-dda7-4e9f-9bab-07f01518d6fa X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173525Z:347db793-811a-4bb3-9437-466f00e6356e + - WESTUS2:20241015T015141Z:18ec7570-dda7-4e9f-9bab-07f01518d6fa X-Msedge-Ref: - - 'Ref A: C7686E681DB84E428D5BBC1007C3A5D1 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:24Z' + - 'Ref A: 10BDBE5E7BE948F594D474855CA5DFE9 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:51:40Z' status: 202 Accepted code: 202 - duration: 1.4152088s + duration: 1.0326222s - id: 2 request: proto: HTTP/1.1 @@ -162,8 +166,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXQjY4NTgzOjJEMTcyNjc2NzMxNi0zNDdEQjc5MzoyRDgxMUE6MkQ0QkIzOjJEOTQzNzoyRDQ2NkYwMEU2MzU2RSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638623641257004640&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=mjUgbUDg6bwWP-hcCwYvDjLJR8XAm_XVO1adWNR9JY02wMqTXXd_t7jcAIUkQ3ihnN2MkIgchAhNY7ZXerctI04a4yIPe5Dlndxnd7xV4CLr14BxokzxUySJXN5ySYs7QnCHIVzzoH5KR3SXUgL2HbxdFGhq7BSfPGcH0-OPWvqKcTLXfaY9CJ0MB8shqZoku_PiaEzsRtARmzg1spvsYu9GFrsSQ5NtHCivn84Na7ATQX-WdOUkUV-YMrwiHoCLmrLskP7Z2d8JgDOD6k7nPlHGvowTpRzEFc1zwQ6T_zDUCIWf8XukuaJCNE8S0ZAycnRtFkLHq8PXgn-inTGPZA&h=EV9ALg3pSVqXa3HXoZUAMl3duUGhK1XkvXg06-UaAeQ + - 66987b3ee31f61486df78432943511a9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXM0UzQUI0OjJEMTcyODk1NzA1OC0xOEVDNzU3MDoyREREQTc6MkQ0RTlGOjJEOUJBQjoyRDA3RjAxNTE4RDZGQSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638645539015699350&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=OjdNznfteAuH1Q1cu7FBqVMZYCxdg_tWtWtE6MSwIxkQQMnuj2mnB6m271WovyPfbAEBp1tjCYTSxrAiKl34El4xfIEW0sjfsSv8BYZKBtUuaHhIpTw-RK16Gie73WpdrXpEtc0jQ-LPhLnlgyZ213qOSzNH8KLPxDJH0s8hQzOm0jooKwCTnYfO0CMjcLh5bjh6HlQSEOGnCxxjHjMFuvv9dXPhWC4x9lHySFvjOYsR6udnlGU0pHHxhnbHIBOoaqxox_fc34xNQDimrLvBvX2AEYy_H9-Y5TjaI_myKpeEQLITWtHKTl9rMkPDdsdABwiv8q_oo0n1I2QDzIa1qQ&h=UKT7kVuTSC6M_m1kSyDVdFrfF4YXsddfXkOQbYiSowc method: GET response: proto: HTTP/2.0 @@ -171,18 +175,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1181 + content_length: 1210 uncompressed: false - body: '{"status":"Succeeded","properties":{"correlationId":"d69e9c1cdd97c7293cd6d5fe98c953eb","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","changeType":"Create","after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","location":"eastus2","name":"rg-azdtest-wb68583","tags":{"azd-env-name":"azdtest-wb68583","BoolTag":"False","DeleteAfter":"2024-09-19T18:35:26Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"}},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","changeType":"Create","after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","kind":"StorageV2","location":"eastus2","name":"stmjvmirceqdbxc","properties":{"allowBlobPublicAccess":false},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-wb68583"},"type":"Microsoft.Storage/storageAccounts"}}]}}' + body: '{"status":"Succeeded","properties":{"correlationId":"66987b3ee31f61486df78432943511a9","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","changeType":"Create","after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","location":"eastus2","name":"rg-azdtest-w3e3ab4","tags":{"azd-env-name":"azdtest-w3e3ab4","BoolTag":"False","DeleteAfter":"2024-10-15T02:51:42Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"}},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","changeType":"Create","after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","kind":"StorageV2","location":"eastus2","name":"stdzyt7z6dr2zdw","properties":{"allowBlobPublicAccess":false,"minimumTlsVersion":"TLS1_2"},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-w3e3ab4"},"type":"Microsoft.Storage/storageAccounts"}}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1181" + - "1210" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:41 GMT + - Tue, 15 Oct 2024 01:51:56 GMT Expires: - "-1" Pragma: @@ -194,18 +198,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 642398b9-4d8f-4d09-8243-2dbfae4fd074 + - 75bece2e-8c67-4b78-9a0d-89c1cae22c5e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173541Z:642398b9-4d8f-4d09-8243-2dbfae4fd074 + - WESTUS2:20241015T015157Z:75bece2e-8c67-4b78-9a0d-89c1cae22c5e X-Msedge-Ref: - - 'Ref A: FF286DEDB13746DEBC39D2BA1F0C415C Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:40Z' + - 'Ref A: 2DFB37D6BC6D45E5A4B305A52906E7B6 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:51:56Z' status: 200 OK code: 200 - duration: 1.099771s + duration: 601.3332ms - id: 3 request: proto: HTTP/1.1 @@ -229,8 +235,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 + - 66987b3ee31f61486df78432943511a9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -249,7 +255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:41 GMT + - Tue, 15 Oct 2024 01:51:56 GMT Expires: - "-1" Pragma: @@ -261,18 +267,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 4e1857f1-e981-4dfe-a84d-81eb6402b57d + - 9bf47acb-6d07-4e37-861e-6fbadf9cade3 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173541Z:4e1857f1-e981-4dfe-a84d-81eb6402b57d + - WESTUS2:20241015T015157Z:9bf47acb-6d07-4e37-861e-6fbadf9cade3 X-Msedge-Ref: - - 'Ref A: C8E4452EA415420D96C44ACBC7360CC4 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:41Z' + - 'Ref A: E951B5589DFA4F64B4B85B074C5B1E72 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:51:57Z' status: 200 OK code: 200 - duration: 114.1419ms + duration: 49.8443ms - id: 4 request: proto: HTTP/1.1 @@ -296,7 +304,7 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 method: GET response: @@ -305,18 +313,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 49489 + content_length: 38114 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/gracekulin-testacr-rg","name":"gracekulin-testacr-rg","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"azd-env-name":"gracekulin-testacr","DeleteAfter":"09/19/2024 23:19:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreesearch-testregion","name":"rg-jairmyreesearch-testregion","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"Owners":"jairmyree","ServiceDirectory":"search","DeleteAfter":"2024-09-23T21:38:27.5896991Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/zed5311dwmin001-rg","name":"zed5311dwmin001-rg","type":"Microsoft.Resources/resourceGroups","location":"uksouth","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed5311-databricks.workspaces-dwmin-rg/providers/Microsoft.Databricks/workspaces/zed5311dwmin001","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/vision-test-rg","name":"vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"azd-env-name":"vision-test","DeleteAfter":"08/10/2024 23:21:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fish918f","name":"rg-fish918f","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"azd-env-name":"fish918f","DeleteAfter":"09/20/2024 07:16:35"},"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":{"DeleteAfter":"09/28/2024 22:26:06"},"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-shrejasearchtest","name":"rg-shrejasearchtest","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"Owners":"shreja","DeleteAfter":"2025-10-23T04:00:14.3477795Z","ServiceDirectory":"search"},"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/rg-rohitgangulysearch-demo","name":"rg-rohitgangulysearch-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"rohitgangulysearch-demo","Owner":"rohitganguly","DoNotDelete":"AI Chat Protocol Demo"},"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/rg-wabrez-remote-state","name":"rg-wabrez-remote-state","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"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/rg-ripark","name":"rg-ripark","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test","DeleteAfter":"10/29/2024 00:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-pinecone-rag-wb-pc","name":"rg-pinecone-rag-wb-pc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-pc","DeleteAfter":"07/27/2024 23:20:32"},"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/NI_sjlnetwork1109_eastus","name":"NI_sjlnetwork1109_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.DevCenter/networkconnections/sjlnetwork1109","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_sjlnt1109_eastus","name":"NI_sjlnt1109_eastus","type":"Microsoft.Resources/resourceGroups","location":"eastus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.DevCenter/networkconnections/sjlnt1109","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02","name":"v-tongMonthlyReleaseTest02","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"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/rg-chrisstables","name":"rg-chrisstables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"tables","DeleteAfter":"2024-09-21T15:07:44.0709129+00:00","Owners":"chriss"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingschemaregistry","name":"rg-mreddingschemaregistry","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"schemaregistry","DeleteAfter":"2024-09-26T19:54:36.7349291+00:00","Owners":"mredding"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","DeleteAfter":"2024-09-22T16:45:48.9056342Z","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-schmeare23","name":"rg-schmeare23","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-09-22T16:56:09.5955357Z","Owners":"codespace","ServiceDirectory":"schemaregistry"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/danielgetu-test","name":"danielgetu-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"09/27/2024 19:25:00"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipschemaregistry","name":"rg-swathipschemaregistry","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"swathip","DeleteAfter":"2024-09-23T22:18:07.4895642Z","ServiceDirectory":"schemaregistry"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipeventhub","name":"rg-swathipeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"swathip","DeleteAfter":"2024-09-23T22:30:37.2422431Z","ServiceDirectory":"eventhub"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhaneventhub","name":"rg-kashifkhaneventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventhub","Owners":"kashifkhan","DeleteAfter":"2024-09-24T13:33:25.4368469Z"},"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/maorleger-mi","name":"maorleger-mi","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_maorleger-mi_maorleger-mi_westus2","name":"MC_maorleger-mi_maorleger-mi_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/Microsoft.ContainerService/managedClusters/maorleger-mi","tags":{"aks-managed-cluster-name":"maorleger-mi","aks-managed-cluster-rg":"maorleger-mi"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MA_defaultazuremonitorworkspace-wus2_westus2_managed","name":"MA_defaultazuremonitorworkspace-wus2_westus2_managed","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/microsoft.monitor/accounts/defaultazuremonitorworkspace-wus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-billwertacr","name":"rg-billwertacr","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2024-10-03T19:27:45.7551015Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkova","name":"rg-limolkova","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"09/20/2024 19:25:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-ai","name":"rg-weilim-ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-ai","DeleteAfter":"09/27/2024 04:35:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-tp-1","name":"rg-weilim-tp-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-tp-1","DeleteAfter":"09/26/2024 23:17:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ripark-one-go18-batch-goeh-1","name":"ripark-one-go18-batch-goeh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":"","DeleteAfter":"2024-09-24T11:29:50.3864037Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-dev","name":"rg-weilim-dev","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-dev","DeleteAfter":"09/27/2024 19:25:00"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-scratch","name":"rg-weilim-scratch","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-scratch","DeleteAfter":"09/28/2024 22:26:07"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-tp-2","name":"rg-weilim-tp-2","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"weilim-tp-2","DeleteAfter":"09/28/2024 22:26:07"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/savaity-jre21-jdk-get-java-clientcore-http-45","name":"savaity-jre21-jdk-get-java-clientcore-http-45","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildJob":"","BuildReason":"","ServiceDirectory":"/azure/","DeleteAfter":"2024-09-25T01:43:23.4581483Z","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/savaity-jre11-default-get-java-clientcore-http-45","name":"savaity-jre11-default-get-java-clientcore-http-45","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildReason":"","BuildId":"","BuildJob":"","ServiceDirectory":"/azure/","DeleteAfter":"2024-09-25T01:43:23.7042707Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/savaity-jre11-vertx-sync-get-java-template-3","name":"savaity-jre11-vertx-sync-get-java-template-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildNumber":"","Owners":"","BuildJob":"","BuildId":"","DeleteAfter":"2024-09-25T01:48:28.8391256Z","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/savaity-jre21-vertx-sync-get-java-template-3","name":"savaity-jre21-vertx-sync-get-java-template-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":"","BuildJob":"","BuildReason":"","DeleteAfter":"2024-09-25T01:49:14.7018510Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/conniey-idlesender-java-eventhubs-1","name":"conniey-idlesender-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","Owners":"","BuildId":"","DeleteAfter":"2024-09-25T20:17:25.0593607Z","ServiceDirectory":"/azure/","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fish918j","name":"rg-fish918j","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"azd-env-name":"fish918j","DeleteAfter":"09/20/2024 07:16:38"},"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/jinlongshiAZD","name":"jinlongshiAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-pycon-demo","name":"rohitganguly-pycon-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-nodejs-1","name":"rg-hemarina-nodejs-1","type":"Microsoft.Resources/resourceGroups","location":"australiacentral","tags":{"azd-env-name":"hemarina-nodejs-1","DeleteAfter":"09/27/2024 19:25:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-nodejs-2","name":"rg-hemarina-nodejs-2","type":"Microsoft.Resources/resourceGroups","location":"australiacentral","tags":{"azd-env-name":"hemarina-nodejs-2","DeleteAfter":"09/27/2024 19:25:05"},"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/jsquire-labeler","name":"jsquire-labeler","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"","owner":"Jesse Squire","purpose":"Spring Grove testing"},"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/dep-zed16-containerservice.managedclusters-csmaz-rg","name":"dep-zed16-containerservice.managedclusters-csmaz-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmpriv-rg","name":"dep-zed16-containerservice.managedclusters-csmpriv-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmin-rg","name":"dep-zed16-containerservice.managedclusters-csmin-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmkube-rg","name":"dep-zed16-containerservice.managedclusters-csmkube-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-cswaf-rg","name":"dep-zed16-containerservice.managedclusters-cswaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmin-rg_aks_zed16csmin001_nodes","name":"dep-zed16-containerservice.managedclusters-csmin-rg_aks_zed16csmin001_nodes","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/dep-zed16-containerservice.managedclusters-csmin-rg/providers/Microsoft.ContainerService/managedClusters/zed16csmin001","tags":{"aks-managed-cluster-name":"zed16csmin001","aks-managed-cluster-rg":"dep-zed16-containerservice.managedclusters-csmin-rg"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmpriv-rg_aks_zed16csmpriv001_nodes","name":"dep-zed16-containerservice.managedclusters-csmpriv-rg_aks_zed16csmpriv001_nodes","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/dep-zed16-containerservice.managedclusters-csmpriv-rg/providers/Microsoft.ContainerService/managedClusters/zed16csmpriv001","tags":{"aks-managed-cluster-name":"zed16csmpriv001","aks-managed-cluster-rg":"dep-zed16-containerservice.managedclusters-csmpriv-rg"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmkube-rg_aks_zed16csmkube001_nodes","name":"dep-zed16-containerservice.managedclusters-csmkube-rg_aks_zed16csmkube001_nodes","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/dep-zed16-containerservice.managedclusters-csmkube-rg/providers/Microsoft.ContainerService/managedClusters/zed16csmkube001","tags":{"Environment":"Non-Prod","Role":"DeploymentValidation","aks-managed-cluster-name":"zed16csmkube001","aks-managed-cluster-rg":"dep-zed16-containerservice.managedclusters-csmkube-rg","hidden-title":"This is visible in the resource name"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-cswaf-rg_aks_zed16cswaf001_nodes","name":"dep-zed16-containerservice.managedclusters-cswaf-rg_aks_zed16cswaf001_nodes","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/dep-zed16-containerservice.managedclusters-cswaf-rg/providers/Microsoft.ContainerService/managedClusters/zed16cswaf001","tags":{"Environment":"Non-Prod","Role":"DeploymentValidation","aks-managed-cluster-name":"zed16cswaf001","aks-managed-cluster-rg":"dep-zed16-containerservice.managedclusters-cswaf-rg","hidden-title":"This is visible in the resource name"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed16-containerservice.managedclusters-csmaz-rg_aks_zed16csmaz001_nodes","name":"dep-zed16-containerservice.managedclusters-csmaz-rg_aks_zed16csmaz001_nodes","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/dep-zed16-containerservice.managedclusters-csmaz-rg/providers/Microsoft.ContainerService/managedClusters/zed16csmaz001","tags":{"Environment":"Non-Prod","Role":"DeploymentValidation","aks-managed-cluster-name":"zed16csmaz001","aks-managed-cluster-rg":"dep-zed16-containerservice.managedclusters-csmaz-rg","hidden-title":"This is visible in the resource name"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/test-ai-toolkit-rg","name":"test-ai-toolkit-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-ai-toolkit","DeleteAfter":"08/30/2024 16:32:58"},"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/vision-dev-rg","name":"vision-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev","DeleteAfter":"09/05/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-dev-test-rg","name":"vision-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev-test","DeleteAfter":"09/05/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-chat-test-rg","name":"vision-chat-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-chat-test","DeleteAfter":"09/06/2024 07:22:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-rg","name":"chat-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev","DeleteAfter":"09/06/2024 07:22:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ai-chat-vision-test-rg","name":"ai-chat-vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ai-chat-vision-test","DeleteAfter":"09/06/2024 07:22:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-test-rg","name":"chat-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev-test","DeleteAfter":"09/06/2024 07:22:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-contoso-creative-writer","name":"rg-wabrez-contoso-creative-writer","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-contoso-creative-writer","DeleteAfter":"09/16/2024 23:17:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"dev","DeleteAfter":"09/20/2024 19:25:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-eh-daimler-fix","name":"anuchan-eh-daimler-fix","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/20/2024 19:25:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-eh-live1","name":"anuchan-eh-live1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/21/2024 19:25:00"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-hello-azd","name":"rg-matell-hello-azd","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-hello-azd","DeleteAfter":"09/22/2024 04:26:53"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xsh1","name":"rg-xsh1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"xsh1","DeleteAfter":"09/14/2024 07:23:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-aspirecors","name":"rg-vivazqu-aspirecors","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-aspirecors","DeleteAfter":"09/26/2024 23:17:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca","name":"rg-wabrez-todo-aca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-todo-aca","DeleteAfter":"09/28/2024 22:26:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-rg-apiview-local","name":"yumeng-rg-apiview-local","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"apiview-local","DeleteAfter":"09/28/2024 22:26:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-java-023","name":"rg-jinlong-java-023","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-java-023","DeleteAfter":"09/19/2024 22:25:53"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jianingpy","name":"rg-jianingpy","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jianingpy","DeleteAfter":"09/20/2024 03:20:51"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-python-919","name":"rg-jinlong-python-919","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-python-919","DeleteAfter":"09/20/2024 03:20:56"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fish918e","name":"rg-fish918e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fish918e","DeleteAfter":"09/20/2024 07:16:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-python-989","name":"rg-jinlong-python-989","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-python-989","DeleteAfter":"09/20/2024 07:16:46"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-cs-919","name":"rg-jinlong-cs-919","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-cs-919","DeleteAfter":"09/20/2024 07:16:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-cs09019","name":"rg-jinlong-cs09019","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-cs09019","DeleteAfter":"09/20/2024 11:16:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zedytpmt01","name":"rg-zedytpmt01","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zedytpmt01","DeleteAfter":"09/20/2024 07:16:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jianingfunc","name":"rg-jianingfunc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jianingfunc","DeleteAfter":"09/20/2024 11:16:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-terraform-991","name":"rg-jinlong-terraform-991","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-terraform-991","DeleteAfter":"09/20/2024 11:16:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv919-7","name":"rg-tomenv919-7","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv919-7","DeleteAfter":"09/20/2024 11:16:35"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-py-12","name":"rg-jinlong-py-12","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-py-12","DeleteAfter":"09/20/2024 11:16:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-fasdf12231","name":"rg-test-tc-fasdf12231","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-tc-fasdf12231","DeleteAfter":"09/20/2024 11:16:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-fasf123","name":"rg-test-tc-fasf123","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-tc-fasf123","DeleteAfter":"09/20/2024 11:16:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w7138f8","name":"rg-azdtest-w7138f8","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-09-19T17:08:57Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb28cbc","name":"rg-azdtest-wb28cbc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-09-19T17:10:34Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ds-storage","name":"rg-wabrez-ds-storage","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-ds-storage","DeleteAfter":"2024-09-19T17:12:51Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-ds-02","name":"rg-wabrez-ds-02","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-ds-02","DeleteAfter":"2024-09-19T17:17:18Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gracekulin-vision2-rg","name":"gracekulin-vision2-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"gracekulin-vision2","DeleteAfter":"09/29/2024 16:31:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-func","name":"rg-wabrez-func","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-func","DeleteAfter":"09/29/2024 17:06:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rs-azdtest-db34d67","name":"rs-azdtest-db34d67","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/20/2024 17:06:53"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-db34d67","name":"rg-azdtest-db34d67","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-db34d67","DeleteAfter":"09/20/2024 17:06:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rs-azdtest-def4d30","name":"rs-azdtest-def4d30","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/20/2024 17:06:56"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-storage-04","name":"rg-wabrez-storage-04","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-storage-04","DeleteAfter":"2024-09-19T18:30:52Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"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-matthewp","name":"rg-matthewp","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/22/2024 19:26:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/matell-rg-storage","name":"matell-rg-storage","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/23/2024 23:20:03"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rohitganguly_ai","name":"rg-rohitganguly_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/26/2024 16:48:56"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mreddingbugtest","name":"mreddingbugtest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/19/2024 22:26:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/test918","name":"test918","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/20/2024 07:16:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/state-demo","name":"state-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/20/2024 07:16:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/meng55","name":"meng55","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/20/2024 07:16:58"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/state-demo985","name":"state-demo985","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/20/2024 11:16:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlong-terraform","name":"jinlong-terraform","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/20/2024 11:16:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"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/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/zed5311dwmin001-rg","name":"zed5311dwmin001-rg","type":"Microsoft.Resources/resourceGroups","location":"uksouth","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-zed5311-databricks.workspaces-dwmin-rg/providers/Microsoft.Databricks/workspaces/zed5311dwmin001","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/vision-test-rg","name":"vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"francecentral","tags":{"azd-env-name":"vision-test","DeleteAfter":"08/10/2024 23:21:29"},"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/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/rg-pinecone-rag-wb-pc","name":"rg-pinecone-rag-wb-pc","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-pc","DeleteAfter":"07/27/2024 23:20:32"},"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/v-tongMonthlyReleaseTest02","name":"v-tongMonthlyReleaseTest02","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"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/rg-creative-writer-dev","name":"rg-creative-writer-dev","type":"Microsoft.Resources/resourceGroups","location":"canadaeast","tags":{"azd-env-name":"creative-writer-dev","DeleteAfter":"10/15/2024 20:20:34"},"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/annelo-azure-openai-rg","name":"annelo-azure-openai-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"09/29/2024 18:49:44"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nibhatimonitor","name":"rg-nibhatimonitor","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-21T21:43:31.0109728+00:00","Owners":"nibhati","ServiceDirectory":"monitor"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-15T21:52:05.3931246Z","Owners":"llawrence","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventhubs","Owners":"larryo","DeleteAfter":"2024-10-19T21:56:41.6731478Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-vw","name":"anuchan-vw","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"10/21/2024 19:20:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-9a7de3a313caae8c","name":"rg-9a7de3a313caae8c","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2024-10-17T00:57:10.8765580Z","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv82897c8","name":"rgcomv82897c8","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"10/15/2024 07:14:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-19T16:31:30.4051359Z","Owners":"llawrence","ServiceDirectory":"eventhub"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-schemaregmap","name":"rg-schemaregmap","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"codespace","ServiceDirectory":"schemaregistry","DeleteAfter":"2024-10-19T17:34:07.3016394Z"},"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","DeleteAfter":"2024-11-19T19:02:52.9728562Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","DeleteAfter":"2024-11-19T21:32:52.6907040Z","ServiceDirectory":"messaging/azservicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaztables","name":"rg-riparkaztables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-10-19T23:57:18.9682874Z","ServiceDirectory":"data/aztables","Owners":"ripark"},"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/maorleger-mi","name":"maorleger-mi","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MC_maorleger-mi_maorleger-mi_westus2","name":"MC_maorleger-mi_maorleger-mi_westus2","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/Microsoft.ContainerService/managedClusters/maorleger-mi","tags":{"aks-managed-cluster-name":"maorleger-mi","aks-managed-cluster-rg":"maorleger-mi"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/MA_defaultazuremonitorworkspace-wus2_westus2_managed","name":"MA_defaultazuremonitorworkspace-wus2_westus2_managed","type":"Microsoft.Resources/resourceGroups","location":"westus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/maorleger-mi/providers/microsoft.monitor/accounts/defaultazuremonitorworkspace-wus2","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cobey-aitk-test","name":"cobey-aitk-test","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/18/2024 00:29:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-ai","name":"rg-weilim-ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"tags":"working","DeleteAfter":"10/21/2024 23:15:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg51944","name":"javacsmrg51944","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 03:13:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg72693","name":"javacsmrg72693","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:20"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg45615","name":"javacsmrg45615","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg70899","name":"javacsmrg70899","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"10/15/2024 07:14:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv56676d9","name":"rgcomv56676d9","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv507257e","name":"rgcomv507257e","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv25092df","name":"rgcomv25092df","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv891957d","name":"rgcomv891957d","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv35157c4","name":"rgcomv35157c4","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv3360256","name":"rgcomv3360256","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv4247092","name":"rgcomv4247092","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgcomv595754b","name":"rgcomv595754b","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"10/15/2024 07:14:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antischujqnqlqjzs4go","name":"antischujqnqlqjzs4go","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"azd-env-name":"cloudmachine-restaurantreviewapp-local","abc":"def","cloudmachine-friendlyname":"restaurantreviewapp","DeleteAfter":"10/15/2024 20:20:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre11-vertx-async-get-java-azure-core-http-1","name":"jairmyree-jre11-vertx-async-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","DeleteAfter":"2024-10-21T20:42:24.0563192Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre21-vertx-sync-get-java-azure-core-http-1","name":"jairmyree-jre21-vertx-sync-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildJob":"","Owners":"","DeleteAfter":"2024-10-21T20:42:24.5822954Z","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jairmyree-jre11-vertx-sync-get-java-azure-core-http-1","name":"jairmyree-jre11-vertx-sync-get-java-azure-core-http-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2024-10-21T20:45:25.9420842Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","BuildId":""},"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/jinlongshiAZD","name":"jinlongshiAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/27/2024 08:17:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rohitganguly-pycon-demo","name":"rohitganguly-pycon-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owners":"rohitganguly","DoNotDelete":""},"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-kashifkhan","name":"rg-kashifkhan","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"10/18/2024 00:29:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-labeler","name":"jsquire-labeler","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"","owner":"Jesse Squire","purpose":"Spring Grove testing"},"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/test-ai-toolkit-rg","name":"test-ai-toolkit-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"test-ai-toolkit","DeleteAfter":"08/30/2024 16:32:58"},"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/vision-dev-rg","name":"vision-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev","DeleteAfter":"09/05/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-dev-test-rg","name":"vision-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-dev-test","DeleteAfter":"09/05/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-chat-test-rg","name":"vision-chat-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision-chat-test","DeleteAfter":"09/06/2024 07:22:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-rg","name":"chat-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev","DeleteAfter":"09/06/2024 07:22:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ai-chat-vision-test-rg","name":"ai-chat-vision-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"ai-chat-vision-test","DeleteAfter":"09/06/2024 07:22:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-dev-test-rg","name":"chat-dev-test-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-dev-test","DeleteAfter":"09/06/2024 07:22:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gracekulin-vision2-rg","name":"gracekulin-vision2-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"gracekulin-vision2","DeleteAfter":"09/29/2024 16:31:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vision-rg","name":"vision-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vision","DeleteAfter":"09/20/2024 18:49:42"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-extensions","name":"rg-wabrez-extensions","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-todo-aca","name":"rg-wabrez-todo-aca","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/24/2024 23:23:04"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-asd23lllk","name":"rg-test-tc-asd23lllk","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-asd123","name":"rg-test-tc-asd123","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:36"},"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-adjklp898","name":"rg-test-tc-adjklp898","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 03:21:44"},"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_ai","name":"rg-wabrez_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/21/2024 03:20:55"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkovaai","name":"rg-limolkovaai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"10/13/2024 07:20:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihuasample","name":"rg-shihuasample","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihuasample","DeleteAfter":"10/15/2024 07:14:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhss","name":"rg-mhss","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mhss","DeleteAfter":"10/15/2024 11:15:49"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mh15","name":"rg-mh15","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mh15","DeleteAfter":"10/15/2024 11:15:51"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-writer-dev","name":"rg-contoso-writer-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"contoso-writer-dev","DeleteAfter":"10/15/2024 20:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chat-appicbjybzfq3rra-rg","name":"chat-appicbjybzfq3rra-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"chat-app","DeleteAfter":"10/15/2024 20:20:38"},"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":{"DeleteAfter":"10/24/2024 20:20:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w797be2","name":"rg-azdtest-w797be2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-10-15T00:00:13Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w13c21d","name":"rg-azdtest-w13c21d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w13c21d","DeleteAfter":"2024-10-15T00:00:56Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w39acd5","name":"rg-azdtest-w39acd5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-10-15T01:17:39Z"},"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/rg-nlkm-pe-mng","name":"rg-nlkm-pe-mng","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-ip60-pe-umg","name":"rg-ip60-pe-umg","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"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-vgx0","name":"rg-vgx0","type":"Microsoft.Resources/resourceGroups","location":"israelcentral","tags":{"DeleteAfter":"10/15/2024 11:15:52"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/20/2024 07:21:50"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg8059547b","name":"rg8059547b","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 03:13:05"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg76794b","name":"rg76794b","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 03:13:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-gzrr","name":"rg-gzrr","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/15/2024 07:14:36"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"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"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "49489" + - "38114" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:41 GMT + - Tue, 15 Oct 2024 01:51:56 GMT Expires: - "-1" Pragma: @@ -328,18 +336,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 66987b3ee31f61486df78432943511a9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - e853cb7f-d35f-43ad-a31b-61b93a1f4542 + - 951911e9-ab24-4e82-8d20-408f51e80346 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173542Z:e853cb7f-d35f-43ad-a31b-61b93a1f4542 + - WESTUS2:20241015T015157Z:951911e9-ab24-4e82-8d20-408f51e80346 X-Msedge-Ref: - - 'Ref A: 134057F80C6D4F968E439C0DDE2CDC9B Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:41Z' + - 'Ref A: A95685E7B8D64DA5BC06808E7960CD34 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:51:57Z' status: 200 OK code: 200 - duration: 74.5231ms + duration: 71.5766ms - id: 5 request: proto: HTTP/1.1 @@ -363,7 +373,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -383,7 +393,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:45 GMT + - Tue, 15 Oct 2024 01:52:04 GMT Expires: - "-1" Pragma: @@ -395,18 +405,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - c4f91a8c-2970-4d37-9dbf-1afcdee31f6e + - e75b7806-0471-4bd5-af30-552a1ab49f95 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173546Z:c4f91a8c-2970-4d37-9dbf-1afcdee31f6e + - WESTUS2:20241015T015204Z:e75b7806-0471-4bd5-af30-552a1ab49f95 X-Msedge-Ref: - - 'Ref A: 78BF6097B5DA4FA3A4920C33B0668F34 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:44Z' + - 'Ref A: 0C8EE3977B164F21B223C2E3E66C7E7A Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:01Z' status: 200 OK code: 200 - duration: 2.5595169s + duration: 3.191484s - id: 6 request: proto: HTTP/1.1 @@ -430,7 +442,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -439,18 +451,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1953039 + content_length: 2187179 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=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1953039" + - "2187179" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:50 GMT + - Tue, 15 Oct 2024 01:52:11 GMT Expires: - "-1" Pragma: @@ -462,18 +474,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 30cf1883-2c34-415e-bfe0-26d04b0fdfc0 + - 071fdfca-4e15-4ab9-9374-6880aee4d378 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173551Z:30cf1883-2c34-415e-bfe0-26d04b0fdfc0 + - WESTUS2:20241015T015211Z:071fdfca-4e15-4ab9-9374-6880aee4d378 X-Msedge-Ref: - - 'Ref A: EC6BA2DA48594989AEB967B0D6C48C70 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:46Z' + - 'Ref A: 236A7475CD6E448B9AD1EA7F135E237B Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:05Z' status: 200 OK code: 200 - duration: 4.4360592s + duration: 6.8079872s - id: 7 request: proto: HTTP/1.1 @@ -495,8 +509,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -504,18 +518,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + content_length: 867605 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=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:53 GMT + - Tue, 15 Oct 2024 01:52:16 GMT Expires: - "-1" Pragma: @@ -527,18 +541,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 3e2ec159-0ce6-4561-af0f-41d2e2e6bc52 + - 0f33ecd8-6545-4814-a2b4-b8b31811f9ea X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173554Z:3e2ec159-0ce6-4561-af0f-41d2e2e6bc52 + - WESTUS2:20241015T015216Z:0f33ecd8-6545-4814-a2b4-b8b31811f9ea X-Msedge-Ref: - - 'Ref A: 512DA9D5322E4BE6BF2FF715429C551F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:51Z' + - 'Ref A: 0D671DBEC50641B88AE16F7E5512E98D Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:12Z' status: 200 OK code: 200 - duration: 2.8574516s + duration: 4.3569572s - id: 8 request: proto: HTTP/1.1 @@ -560,8 +576,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -569,18 +585,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 582659 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=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:56 GMT + - Tue, 15 Oct 2024 01:52:20 GMT Expires: - "-1" Pragma: @@ -592,18 +608,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - f21d0728-e923-45a6-8056-bea6b8735213 + - 41a57216-8617-4147-84d6-65bee97b1c0d X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173557Z:f21d0728-e923-45a6-8056-bea6b8735213 + - WESTUS2:20241015T015220Z:41a57216-8617-4147-84d6-65bee97b1c0d X-Msedge-Ref: - - 'Ref A: 89AFA32D934C4759B682D907B6789C01 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:54Z' + - 'Ref A: DD56D1A9035C4BE4B439B03B1D719469 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:16Z' status: 200 OK code: 200 - duration: 3.1530796s + duration: 3.9899865s - id: 9 request: proto: HTTP/1.1 @@ -625,8 +643,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -634,18 +652,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 262264 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=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d","value":[]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:00 GMT + - Tue, 15 Oct 2024 01:52:23 GMT Expires: - "-1" Pragma: @@ -657,60 +675,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - "1099" X-Ms-Request-Id: - - 21e98ead-a205-4d97-a3c0-cb048badec0b + - c18d32a3-521e-4db1-9a2f-d9706ca199df X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173601Z:21e98ead-a205-4d97-a3c0-cb048badec0b + - WESTUS2:20241015T015223Z:c18d32a3-521e-4db1-9a2f-d9706ca199df X-Msedge-Ref: - - 'Ref A: DDA5C0B70A28485890711204A2BDB932 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:57Z' + - 'Ref A: EF3A62E839574D0390AEA7ECC2F05839 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:21Z' status: 200 OK code: 200 - duration: 4.2740767s + duration: 2.6851995s - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4683 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4683" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d - method: GET + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 1959 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=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:52:24Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"8f1e9cf4eb85e0231b14da17f6c9f597","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "1959" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:04 GMT + - Tue, 15 Oct 2024 01:52:25 GMT Expires: - "-1" Pragma: @@ -722,60 +748,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - ba422c91-9677-4055-8f27-cdbc8366b190 + - 94a5dc2a-a0a7-4b92-8956-a8a3ec048294 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173605Z:ba422c91-9677-4055-8f27-cdbc8366b190 + - WESTUS2:20241015T015225Z:94a5dc2a-a0a7-4b92-8956-a8a3ec048294 X-Msedge-Ref: - - 'Ref A: 758547C895024F9884AB37E62CF9BBA9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:01Z' + - 'Ref A: C78C3E248F8D494B8A33C83833D3B210 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:23Z' status: 200 OK code: 200 - duration: 3.3347108s + duration: 1.8691407s - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4683 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4683" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d - method: GET + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 1554 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=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:52:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T01:52:28.3950932Z","duration":"PT0.0008118S","correlationId":"8f1e9cf4eb85e0231b14da17f6c9f597","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4-1728957058/operationStatuses/08584726497392873414?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1888" + - "1554" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:05 GMT + - Tue, 15 Oct 2024 01:52:29 GMT Expires: - "-1" Pragma: @@ -787,18 +823,22 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Deployment-Engine-Version: + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 14629a13-26f4-4323-b4a1-e01af0216b00 + - 5c83230e-812c-4a2c-96ee-07e73953f4c9 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173605Z:14629a13-26f4-4323-b4a1-e01af0216b00 + - WESTUS2:20241015T015229Z:5c83230e-812c-4a2c-96ee-07e73953f4c9 X-Msedge-Ref: - - 'Ref A: D828AF776A684264B3EA5276D05001C8 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:05Z' - status: 200 OK - code: 200 - duration: 831.4673ms + - 'Ref A: 460D7954DE2E4AE39645B23F5C1477D9 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:52:25Z' + status: 201 Created + code: 201 + duration: 3.7158622s - id: 12 request: proto: HTTP/1.1 @@ -820,8 +860,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/operationStatuses/08584726497392873414?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -829,18 +869,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 22 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "555" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:07 GMT + - Tue, 15 Oct 2024 01:53:29 GMT Expires: - "-1" Pragma: @@ -852,18 +892,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - f3e858d9-432f-46a9-ab8a-b65c962ba5dd + - 43b6d674-b130-42bc-a6f6-3c91e68b9034 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173608Z:f3e858d9-432f-46a9-ab8a-b65c962ba5dd + - WESTUS2:20241015T015330Z:43b6d674-b130-42bc-a6f6-3c91e68b9034 X-Msedge-Ref: - - 'Ref A: 4CEEEB440C794A5BA1C60785FC3F0FE0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:05Z' + - 'Ref A: E5152D0016E7410CB2EA1AE48E8936E9 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:30Z' status: 200 OK code: 200 - duration: 2.2755002s + duration: 223.3544ms - id: 13 request: proto: HTTP/1.1 @@ -885,8 +927,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -894,18 +936,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 2482 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:52:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:53:00.7831682Z","duration":"PT32.3888868S","correlationId":"8f1e9cf4eb85e0231b14da17f6c9f597","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:09 GMT + - Tue, 15 Oct 2024 01:53:30 GMT Expires: - "-1" Pragma: @@ -917,30 +959,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 555fe1ab-453b-4e61-b5d2-8da8e6b79349 + - 0dd96c08-9646-407c-999d-6c5fe58ec367 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173610Z:555fe1ab-453b-4e61-b5d2-8da8e6b79349 + - WESTUS2:20241015T015330Z:0dd96c08-9646-407c-999d-6c5fe58ec367 X-Msedge-Ref: - - 'Ref A: ED72CF9EB37D4D1C8CED0D9F832CE7BB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:08Z' + - 'Ref A: D787BDD0D67245D7AD476EF8C569E760 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:30Z' status: 200 OK code: 200 - duration: 1.9534925s + duration: 209.6484ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4683 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wb68583"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wb68583","azd-provision-param-hash":"cb82c11007736210dd5e61b06d4b7a61277621dc14fd255229e5beeb22e33110"}}' + body: "" form: {} headers: Accept: @@ -949,36 +993,30 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "4683" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 - method: PUT + - 8f1e9cf4eb85e0231b14da17f6c9f597 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1554 + content_length: 396 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"cb82c11007736210dd5e61b06d4b7a61277621dc14fd255229e5beeb22e33110"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:36:10Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-09-19T17:36:12.3892526Z","duration":"PT0.0006686S","correlationId":"4c307ab2f0bde870c6a627816af4ae03","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","name":"rg-azdtest-w3e3ab4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","DeleteAfter":"2024-10-15T02:52:26Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748395148041802?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1554" + - "396" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:12 GMT + - Tue, 15 Oct 2024 01:53:30 GMT Expires: - "-1" Pragma: @@ -990,20 +1028,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - X-Ms-Deployment-Engine-Version: - - 1.109.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - 8f1e9cf4eb85e0231b14da17f6c9f597 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - e6f91ab2-66e1-4c5a-8d2e-c31dafc796b2 + - 6bce8327-f120-4106-a29a-ba2200ad2f3b X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173613Z:e6f91ab2-66e1-4c5a-8d2e-c31dafc796b2 + - WESTUS2:20241015T015330Z:6bce8327-f120-4106-a29a-ba2200ad2f3b X-Msedge-Ref: - - 'Ref A: AE7F60BE895745DBA630D7BB6EDF57CF Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:10Z' - status: 201 Created - code: 201 - duration: 2.9417853s + - 'Ref A: 23B0F879401447ACA955A21C37A43011 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:30Z' + status: 200 OK + code: 200 + duration: 70.4296ms - id: 15 request: proto: HTTP/1.1 @@ -1018,15 +1056,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748395148041802?api-version=2021-04-01 + - 68863635f0d060a97e6b5ec979d85d98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: proto: HTTP/2.0 @@ -1034,18 +1074,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 35367 uncompressed: false - body: '{"status":"Succeeded"}' + 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/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"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "35367" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:13 GMT + - Tue, 15 Oct 2024 01:53:37 GMT Expires: - "-1" Pragma: @@ -1057,64 +1097,74 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 68863635f0d060a97e6b5ec979d85d98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - "1099" X-Ms-Request-Id: - - 764a534c-0e3f-4446-8d90-df697fc9bc06 + - e086b38f-c9ba-4eac-814e-eb3db091e4d1 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173714Z:764a534c-0e3f-4446-8d90-df697fc9bc06 + - WESTUS2:20241015T015337Z:e086b38f-c9ba-4eac-814e-eb3db091e4d1 X-Msedge-Ref: - - 'Ref A: 2E6574B6782E459581ED3D5478EFD531 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:14Z' + - 'Ref A: 667C658DF3A7495496807CFD296B6D8C Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:34Z' status: 200 OK code: 200 - duration: 232.5505ms + duration: 3.3326821s - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4567 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}},"whatIfSettings":{}}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4567" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 - method: GET + - 68863635f0d060a97e6b5ec979d85d98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/whatIf?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 0 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"cb82c11007736210dd5e61b06d4b7a61277621dc14fd255229e5beeb22e33110"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:36:10Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:36:51.6782161Z","duration":"PT39.2896321S","correlationId":"4c307ab2f0bde870c6a627816af4ae03","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}]}}' + body: "" headers: Cache-Control: - no-cache Content-Length: - - "2482" - Content-Type: - - application/json; charset=utf-8 + - "0" Date: - - Thu, 19 Sep 2024 17:37:13 GMT + - Tue, 15 Oct 2024 01:53:38 GMT Expires: - "-1" + Location: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXM0UzQUI0OjJEMTcyODk1NzA1OC1FMUI1QkYzRjoyREI0QzM6MkQ0NTNBOjJEOUVGMDoyRDQ4OEZCODY1RTgzRCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638645540190300080&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=AsXyGM-guWL-1w1lJI2M-0MzGwmxY5nNebpCCFk6SASnL8qYcTlzJb7lka-2jXGfWYes9BsFVyKs2z7aizBn-SoLapCFL37Y3Mh2rjdhk4xz6W51LJkJk9LFvsdC564sqfl4x0YrguZI61VV8M9N1T3mHS7cOn56LNJRB2Ixg1Vikfh6Tf8G8_5makheWQCposemaip09XsUYJFmQQMMz2boxZxrl9AzugYz5bF0yTSYUm1-I7TWGoVX7ypxjjF-1yuj5-OmSBS0IF7hCSTfRUvklt8rJ9zkRaDL2h3-6CV5P6IP3TyEKCxyEUcx-89gu7PjhwSlnBIiTkQD5PtXaA&h=4kAKCCVWPUW7tx_hqXYTnOH942heLvLOcHuZXPPk2VI Pragma: - no-cache + Retry-After: + - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -1122,18 +1172,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - 68863635f0d060a97e6b5ec979d85d98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 0fb41b40-b107-46e7-a5f1-02ab20e3be14 + - e1b5bf3f-b4c3-453a-9ef0-488fb865e83d X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173714Z:0fb41b40-b107-46e7-a5f1-02ab20e3be14 + - WESTUS2:20241015T015339Z:e1b5bf3f-b4c3-453a-9ef0-488fb865e83d X-Msedge-Ref: - - 'Ref A: 52064AD8AA894936A0F6BAD455F182AA Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:14Z' - status: 200 OK - code: 200 - duration: 213.2324ms + - 'Ref A: 065341620204421CA0B90312100AF8A6 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:37Z' + status: 202 Accepted + code: 202 + duration: 1.1175979s - id: 17 request: proto: HTTP/1.1 @@ -1148,17 +1200,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 + - 68863635f0d060a97e6b5ec979d85d98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXM0UzQUI0OjJEMTcyODk1NzA1OC1FMUI1QkYzRjoyREI0QzM6MkQ0NTNBOjJEOUVGMDoyRDQ4OEZCODY1RTgzRCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638645540190300080&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=AsXyGM-guWL-1w1lJI2M-0MzGwmxY5nNebpCCFk6SASnL8qYcTlzJb7lka-2jXGfWYes9BsFVyKs2z7aizBn-SoLapCFL37Y3Mh2rjdhk4xz6W51LJkJk9LFvsdC564sqfl4x0YrguZI61VV8M9N1T3mHS7cOn56LNJRB2Ixg1Vikfh6Tf8G8_5makheWQCposemaip09XsUYJFmQQMMz2boxZxrl9AzugYz5bF0yTSYUm1-I7TWGoVX7ypxjjF-1yuj5-OmSBS0IF7hCSTfRUvklt8rJ9zkRaDL2h3-6CV5P6IP3TyEKCxyEUcx-89gu7PjhwSlnBIiTkQD5PtXaA&h=4kAKCCVWPUW7tx_hqXYTnOH942heLvLOcHuZXPPk2VI method: GET response: proto: HTTP/2.0 @@ -1166,18 +1216,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 2554 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","name":"rg-azdtest-wb68583","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","DeleteAfter":"2024-09-19T18:36:10Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"status":"Succeeded","properties":{"correlationId":"68863635f0d060a97e6b5ec979d85d98","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","changeType":"Modify","before":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","location":"eastus2","name":"rg-azdtest-w3e3ab4","tags":{"azd-env-name":"azdtest-w3e3ab4","BoolTag":"False","DeleteAfter":"2024-10-15T02:52:26Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","location":"eastus2","name":"rg-azdtest-w3e3ab4","tags":{"azd-env-name":"azdtest-w3e3ab4","BoolTag":"False","DeleteAfter":"2024-10-15T02:53:39Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"delta":[{"path":"tags.DeleteAfter","propertyChangeType":"Modify","before":"2024-10-15T02:52:26Z","after":"2024-10-15T02:53:39Z"}]},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","changeType":"NoChange","before":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","kind":"StorageV2","location":"eastus2","name":"stdzyt7z6dr2zdw","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-w3e3ab4"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","kind":"StorageV2","location":"eastus2","name":"stdzyt7z6dr2zdw","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_2","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-w3e3ab4"},"type":"Microsoft.Storage/storageAccounts"},"delta":[]}]}}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "2554" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:13 GMT + - Tue, 15 Oct 2024 01:53:54 GMT Expires: - "-1" Pragma: @@ -1189,18 +1239,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - 68863635f0d060a97e6b5ec979d85d98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11990" + - "1099" X-Ms-Request-Id: - - 09ab7d62-e45e-4f7d-933f-4c4124d0e762 + - 32241589-400c-43eb-93cf-ccf5a42a3753 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173714Z:09ab7d62-e45e-4f7d-933f-4c4124d0e762 + - WESTUS2:20241015T015354Z:32241589-400c-43eb-93cf-ccf5a42a3753 X-Msedge-Ref: - - 'Ref A: D1F1E4FD7C2F466CBB78DB73E8391BB5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:14Z' + - 'Ref A: 5CC0095611764310B2D9FA3BA323058E Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:54Z' status: 200 OK code: 200 - duration: 56.826ms + duration: 560.8038ms - id: 18 request: proto: HTTP/1.1 @@ -1222,10 +1274,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - 68863635f0d060a97e6b5ec979d85d98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1233,18 +1285,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 396 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/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","name":"rg-azdtest-w3e3ab4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","DeleteAfter":"2024-10-15T02:52:26Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "396" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:19 GMT + - Tue, 15 Oct 2024 01:53:54 GMT Expires: - "-1" Pragma: @@ -1256,30 +1308,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - 68863635f0d060a97e6b5ec979d85d98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11989" + - "1099" X-Ms-Request-Id: - - 79206407-b93e-410d-b51b-d41c7cfec2d0 + - 41ca3b2e-f248-4e14-a111-1152ab40a257 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173720Z:79206407-b93e-410d-b51b-d41c7cfec2d0 + - WESTUS2:20241015T015354Z:41ca3b2e-f248-4e14-a111-1152ab40a257 X-Msedge-Ref: - - 'Ref A: 10C73B1C657D49AD875F8318A3A1AB53 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:16Z' + - 'Ref A: E487613672A24BDA9EB71E4A868A14EB Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:54Z' status: 200 OK code: 200 - duration: 3.1098044s + duration: 103.8358ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4567 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wb68583"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}},"whatIfSettings":{}}}' + body: "" form: {} headers: Accept: @@ -1288,40 +1342,34 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "4567" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/whatIf?api-version=2021-04-01 - method: POST + - f8d490f6815d4b851bec3d1738e44914 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 35367 uncompressed: false - body: "" + 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/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"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "35367" + Content-Type: + - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:20 GMT + - Tue, 15 Oct 2024 01:54:01 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXQjY4NTgzOjJEMTcyNjc2NzMxNi03MkYzMDI3OToyRDZBMDI6MkQ0NjA4OjJEOEEzQToyREEwMDUyREZDMDM3NCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638623642415137971&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=nv27geFYJw_V8eJkMUxjduj4Xy3l11RkdqNwwPfmiUe-8Jdo8ylNcoSh2Z4-9NTObK7KWk68Fi9k7Fs-ULUqcN4rm0uspyAIUdHJP01_VOvdZ74czeqRJ6Xbx_hPmlQ3BsXt6JPStpTXIFqITY6I_Z6sK0X0u7bQT_6q8o9LVB2lPT0hNsCGakWC8P1aVkssESG7pYenL2ADG3s5t5ixEMqP6XJM-QWWx7Z8KNSkONngNntRWcpzlAGYG6PfbXLEPzlXh3kDMgkZ84wAp9RucaOHNbMVq71aD109r-5okIUMuA00vbQcdFbjxua2OTqYmqbrcd6GlMISuDZ7jquRdg&h=5vlBeNuh1hvR-veEOV99lmGeeRCFcoPb9C1pvhS0CxM Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -1329,18 +1377,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - f8d490f6815d4b851bec3d1738e44914 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 72f30279-6a02-4608-8a3a-a0052dfc0374 + - 2a84cc28-88e9-47b5-87be-af5601aac9e8 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173721Z:72f30279-6a02-4608-8a3a-a0052dfc0374 + - WESTUS2:20241015T015401Z:2a84cc28-88e9-47b5-87be-af5601aac9e8 X-Msedge-Ref: - - 'Ref A: E6AE4A6045644442B4AEDA768305D2A1 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:20Z' - status: 202 Accepted - code: 202 - duration: 1.4071455s + - 'Ref A: 686B09AE32284F13BE5E3A7A565907A6 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:53:58Z' + status: 200 OK + code: 200 + duration: 2.854307s - id: 20 request: proto: HTTP/1.1 @@ -1355,6 +1405,8 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: @@ -1362,8 +1414,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXQjY4NTgzOjJEMTcyNjc2NzMxNi03MkYzMDI3OToyRDZBMDI6MkQ0NjA4OjJEOEEzQToyREEwMDUyREZDMDM3NCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638623642415137971&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=nv27geFYJw_V8eJkMUxjduj4Xy3l11RkdqNwwPfmiUe-8Jdo8ylNcoSh2Z4-9NTObK7KWk68Fi9k7Fs-ULUqcN4rm0uspyAIUdHJP01_VOvdZ74czeqRJ6Xbx_hPmlQ3BsXt6JPStpTXIFqITY6I_Z6sK0X0u7bQT_6q8o9LVB2lPT0hNsCGakWC8P1aVkssESG7pYenL2ADG3s5t5ixEMqP6XJM-QWWx7Z8KNSkONngNntRWcpzlAGYG6PfbXLEPzlXh3kDMgkZ84wAp9RucaOHNbMVq71aD109r-5okIUMuA00vbQcdFbjxua2OTqYmqbrcd6GlMISuDZ7jquRdg&h=5vlBeNuh1hvR-veEOV99lmGeeRCFcoPb9C1pvhS0CxM + - f8d490f6815d4b851bec3d1738e44914 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1371,18 +1423,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2554 + content_length: 2189662 uncompressed: false - body: '{"status":"Succeeded","properties":{"correlationId":"23d7ec0d113aef563570d07e50641300","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","changeType":"Modify","before":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","location":"eastus2","name":"rg-azdtest-wb68583","tags":{"azd-env-name":"azdtest-wb68583","BoolTag":"False","DeleteAfter":"2024-09-19T18:36:10Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","location":"eastus2","name":"rg-azdtest-wb68583","tags":{"azd-env-name":"azdtest-wb68583","BoolTag":"False","DeleteAfter":"2024-09-19T18:37:22Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"delta":[{"path":"tags.DeleteAfter","propertyChangeType":"Modify","before":"2024-09-19T18:36:10Z","after":"2024-09-19T18:37:22Z"}]},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","changeType":"NoChange","before":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","kind":"StorageV2","location":"eastus2","name":"stmjvmirceqdbxc","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_0","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-wb68583"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","kind":"StorageV2","location":"eastus2","name":"stmjvmirceqdbxc","properties":{"accessTier":"Hot","allowBlobPublicAccess":false,"allowCrossTenantReplication":false,"encryption":{"keySource":"Microsoft.Storage"},"minimumTlsVersion":"TLS1_0","networkAcls":{"bypass":"AzureServices","defaultAction":"Allow"},"supportsHttpsTrafficOnly":true},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-wb68583"},"type":"Microsoft.Storage/storageAccounts"},"delta":[]}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","location":"eastus2","name":"azdtest-w3e3ab4-1728957058","properties":{"correlationId":"8f1e9cf4eb85e0231b14da17f6c9f597","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","resourceName":"rg-azdtest-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT32.3888868S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}],"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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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":"2024-10-15T02:52:26Z"},"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T01:53:00.7831682Z"},"tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2554" + - "2189662" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:36 GMT + - Tue, 15 Oct 2024 01:54:07 GMT Expires: - "-1" Pragma: @@ -1394,18 +1446,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - f8d490f6815d4b851bec3d1738e44914 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - bb84f030-a899-44a6-bf71-e912d6b1d1a7 + - 0f975083-e0a1-4bd2-b48d-666a772d00a7 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173737Z:bb84f030-a899-44a6-bf71-e912d6b1d1a7 + - WESTUS2:20241015T015407Z:0f975083-e0a1-4bd2-b48d-666a772d00a7 X-Msedge-Ref: - - 'Ref A: 8ACB4B51A6B445CC859A24084350BD68 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:36Z' + - 'Ref A: 8669FA51880B4F158A7EF7FDCBF6B58D Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:01Z' status: 200 OK code: 200 - duration: 689.8887ms + duration: 6.2304143s - id: 21 request: proto: HTTP/1.1 @@ -1420,17 +1474,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 + - f8d490f6815d4b851bec3d1738e44914 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -1438,18 +1490,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 867605 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","name":"rg-azdtest-wb68583","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","DeleteAfter":"2024-09-19T18:36:10Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:36 GMT + - Tue, 15 Oct 2024 01:54:13 GMT Expires: - "-1" Pragma: @@ -1461,18 +1513,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - f8d490f6815d4b851bec3d1738e44914 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - d72c4f52-2626-4d0f-8b04-6a74fc21ae0a + - 00a72d56-b91f-4223-8e59-53c89235d11e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173737Z:d72c4f52-2626-4d0f-8b04-6a74fc21ae0a + - WESTUS2:20241015T015413Z:00a72d56-b91f-4223-8e59-53c89235d11e X-Msedge-Ref: - - 'Ref A: 86607345F1F049CEB4CA006F3E914907 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:37Z' + - 'Ref A: CC57EF616E464E14A115A3E274A4542B Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:08Z' status: 200 OK code: 200 - duration: 67.2491ms + duration: 5.5265886s - id: 22 request: proto: HTTP/1.1 @@ -1487,17 +1541,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - f8d490f6815d4b851bec3d1738e44914 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1505,18 +1557,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 582659 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/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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:41 GMT + - Tue, 15 Oct 2024 01:54:17 GMT Expires: - "-1" Pragma: @@ -1528,18 +1580,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - f8d490f6815d4b851bec3d1738e44914 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 2c7c1886-05d9-401c-966a-d505513288eb + - e8da11b6-7c57-4856-b021-9c15ca0a8edf X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173742Z:2c7c1886-05d9-401c-966a-d505513288eb + - WESTUS2:20241015T015418Z:e8da11b6-7c57-4856-b021-9c15ca0a8edf X-Msedge-Ref: - - 'Ref A: 704EAFC2F64744009022BBB1B8030764 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:39Z' + - 'Ref A: 288F39E9557E4151BE6A22B1180FA23B Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:13Z' status: 200 OK code: 200 - duration: 3.1926516s + duration: 4.2184751s - id: 23 request: proto: HTTP/1.1 @@ -1554,8 +1608,6 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: @@ -1563,8 +1615,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - f8d490f6815d4b851bec3d1738e44914 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1572,18 +1624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955522 + content_length: 262264 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=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","location":"eastus2","name":"azdtest-wb68583-1726767316","properties":{"correlationId":"4c307ab2f0bde870c6a627816af4ae03","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","resourceName":"rg-azdtest-wb68583","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT39.2896321S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}],"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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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":"2024-09-19T18:36:10Z"},"environmentName":{"type":"String","value":"azdtest-wb68583"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-09-19T17:36:51.6782161Z"},"tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"cb82c11007736210dd5e61b06d4b7a61277621dc14fd255229e5beeb22e33110"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1955522" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:47 GMT + - Tue, 15 Oct 2024 01:54:20 GMT Expires: - "-1" Pragma: @@ -1595,60 +1647,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - f8d490f6815d4b851bec3d1738e44914 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 27a79b41-1cb2-4f24-9d13-0887cc2a5906 + - 9b2273dd-4eef-4fc5-945c-7e1c0724b712 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173748Z:27a79b41-1cb2-4f24-9d13-0887cc2a5906 + - WESTUS2:20241015T015421Z:9b2273dd-4eef-4fc5-945c-7e1c0724b712 X-Msedge-Ref: - - 'Ref A: 38EDF7575C9446F4ACF269FF595686BF Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:42Z' + - 'Ref A: 66C99BCB0B4D4F9896DD13977461013E Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:18Z' status: 200 OK code: 200 - duration: 5.7744864s + duration: 2.9211311s - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4299 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4299" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d - method: GET + - f8d490f6815d4b851bec3d1738e44914 + 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: 282536 + content_length: 4787 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=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f","value":[]}' + 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:51 GMT + - Tue, 15 Oct 2024 01:54:20 GMT Expires: - "-1" Pragma: @@ -1660,18 +1720,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - f8d490f6815d4b851bec3d1738e44914 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 7faf5966-0bab-40c6-891f-99bbbdb921e4 + - ab2d5625-5ab9-4119-9710-86730ad965f2 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173752Z:7faf5966-0bab-40c6-891f-99bbbdb921e4 + - WESTUS2:20241015T015421Z:ab2d5625-5ab9-4119-9710-86730ad965f2 X-Msedge-Ref: - - 'Ref A: 78BD9E5B683C4B8CB7A97ADC405EA4A0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:48Z' + - 'Ref A: DA23BAD553C744D6B651FEBE5F688312 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:21Z' status: 200 OK code: 200 - duration: 3.7563167s + duration: 120.3005ms - id: 25 request: proto: HTTP/1.1 @@ -1686,15 +1746,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: proto: HTTP/2.0 @@ -1702,18 +1764,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 35367 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=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL","value":[]}' + 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/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"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "35367" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:54 GMT + - Tue, 15 Oct 2024 01:54:28 GMT Expires: - "-1" Pragma: @@ -1725,18 +1787,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - facce564-8b22-4c28-979b-48e69109da89 + - 5b7e4656-69bd-4d01-a83e-1956508aaaa3 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173755Z:facce564-8b22-4c28-979b-48e69109da89 + - WESTUS2:20241015T015428Z:5b7e4656-69bd-4d01-a83e-1956508aaaa3 X-Msedge-Ref: - - 'Ref A: 87E4418E5B0D4180B77579B199EC3F9C Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:52Z' + - 'Ref A: 1E38EC9BCF1C45ADAF4AA3E79111263D Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:26Z' status: 200 OK code: 200 - duration: 2.866291s + duration: 2.6774148s - id: 26 request: proto: HTTP/1.1 @@ -1751,6 +1815,8 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: @@ -1758,8 +1824,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1767,18 +1833,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 2189662 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=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","location":"eastus2","name":"azdtest-w3e3ab4-1728957058","properties":{"correlationId":"8f1e9cf4eb85e0231b14da17f6c9f597","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","resourceName":"rg-azdtest-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT32.3888868S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}],"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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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":"2024-10-15T02:52:26Z"},"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T01:53:00.7831682Z"},"tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"35ef107bb10414aec7c29ff778563e0069014df1fe5cc6441472ba6d559b0dd7"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "2189662" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:57 GMT + - Tue, 15 Oct 2024 01:54:34 GMT Expires: - "-1" Pragma: @@ -1790,18 +1856,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1100" X-Ms-Request-Id: - - 79fab70f-afb9-4026-abde-f69a08f63888 + - d051a193-b664-4d49-a39e-bb764c689601 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173758Z:79fab70f-afb9-4026-abde-f69a08f63888 + - WESTUS2:20241015T015435Z:d051a193-b664-4d49-a39e-bb764c689601 X-Msedge-Ref: - - 'Ref A: D442ABFF63434CD2BA6A7F04CE0A4C89 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:55Z' + - 'Ref A: 3FE84F8200784DC4830DA1671A6A5E58 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:28Z' status: 200 OK code: 200 - duration: 3.2977703s + duration: 6.4693509s - id: 27 request: proto: HTTP/1.1 @@ -1823,8 +1891,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -1832,18 +1900,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 867605 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=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:01 GMT + - Tue, 15 Oct 2024 01:54:40 GMT Expires: - "-1" Pragma: @@ -1855,18 +1923,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1100" X-Ms-Request-Id: - - 929311c9-d9a3-40cc-9dd3-9e81be215d76 + - 5aa452c2-37c9-444a-a96f-1c4e2da5a1d0 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173801Z:929311c9-d9a3-40cc-9dd3-9e81be215d76 + - WESTUS2:20241015T015441Z:5aa452c2-37c9-444a-a96f-1c4e2da5a1d0 X-Msedge-Ref: - - 'Ref A: 424E3EC705294B6381D0A2E9528C3C48 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:58Z' + - 'Ref A: B8669AB1A7FC4271875E2CD464D3E8E8 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:35Z' status: 200 OK code: 200 - duration: 3.4398617s + duration: 5.7741154s - id: 28 request: proto: HTTP/1.1 @@ -1888,8 +1958,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1897,18 +1967,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 582659 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=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:03 GMT + - Tue, 15 Oct 2024 01:54:45 GMT Expires: - "-1" Pragma: @@ -1920,18 +1990,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - ef49881e-2d0b-4967-a559-d3572f1c4169 + - 68c730a1-c9fa-4d20-9fba-1a0d18cc4c80 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173803Z:ef49881e-2d0b-4967-a559-d3572f1c4169 + - WESTUS2:20241015T015445Z:68c730a1-c9fa-4d20-9fba-1a0d18cc4c80 X-Msedge-Ref: - - 'Ref A: 42590A172E1941D2BE28CD08773B1963 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:01Z' + - 'Ref A: E17EEDB8E6264F6FA92E1587586B9C8F Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:41Z' status: 200 OK code: 200 - duration: 2.0179809s + duration: 3.9149252s - id: 29 request: proto: HTTP/1.1 @@ -1953,8 +2025,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1962,18 +2034,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 262264 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","value":[]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "555" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:05 GMT + - Tue, 15 Oct 2024 01:54:47 GMT Expires: - "-1" Pragma: @@ -1985,1130 +2057,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 6e4420b9-823e-4cec-840b-dd7f88972689 + - 9bcdec6f-d8c9-4519-8d06-65ed1740955a X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173806Z:6e4420b9-823e-4cec-840b-dd7f88972689 + - WESTUS2:20241015T015448Z:9bcdec6f-d8c9-4519-8d06-65ed1740955a X-Msedge-Ref: - - 'Ref A: 1392565601584087BDCFB211950F38F8 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:03Z' + - 'Ref A: 5F0C576DE2654FD49513BCBA9EBFACD1 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:45Z' status: 200 OK code: 200 - duration: 2.235871s + duration: 2.5518019s - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4299 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 12 - uncompressed: false - body: '{"value":[]}' - headers: - Cache-Control: - - no-cache Content-Length: - - "12" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" - X-Ms-Request-Id: - - 69b499ca-542a-475a-83bd-b9eedef9ae70 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173807Z:69b499ca-542a-475a-83bd-b9eedef9ae70 - X-Msedge-Ref: - - 'Ref A: DAA777F6CA6B4DC1BCA406E9692EFC7D Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:06Z' - status: 200 OK - code: 200 - duration: 1.7820723s - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 4299 - 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "4299" - Content-Type: - - application/json - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - 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: 4787 - 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "4787" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" - X-Ms-Request-Id: - - 619e4088-f138-45fc-b957-9bc7a0a93593 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173808Z:619e4088-f138-45fc-b957-9bc7a0a93593 - X-Msedge-Ref: - - 'Ref A: 0BEFE22DB025429F8BDA6451B4023785 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:07Z' - status: 200 OK - code: 200 - duration: 66.3555ms - - 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: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 35367 - 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/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"}]}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "35367" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" - X-Ms-Request-Id: - - 9ffc81da-5481-4780-88d1-d0e56ddb51d5 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173812Z:9ffc81da-5481-4780-88d1-d0e56ddb51d5 - X-Msedge-Ref: - - 'Ref A: D01ABF363CB84F3894C7802C15B9625F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:10Z' - status: 200 OK - code: 200 - duration: 2.5303926s - - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/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: 1955522 - 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=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","location":"eastus2","name":"azdtest-wb68583-1726767316","properties":{"correlationId":"4c307ab2f0bde870c6a627816af4ae03","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","resourceName":"rg-azdtest-wb68583","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT39.2896321S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}],"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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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":"2024-09-19T18:36:10Z"},"environmentName":{"type":"String","value":"azdtest-wb68583"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-09-19T17:36:51.6782161Z"},"tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"cb82c11007736210dd5e61b06d4b7a61277621dc14fd255229e5beeb22e33110"},"type":"Microsoft.Resources/deployments"}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1955522" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38:19 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" - X-Ms-Request-Id: - - bc8aeaba-c660-4ff4-8318-277408eefc3b - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173819Z:bc8aeaba-c660-4ff4-8318-277408eefc3b - X-Msedge-Ref: - - 'Ref A: 08108926719B4ECEBDDDC792206F90DB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:12Z' - status: 200 OK - code: 200 - duration: 7.1503962s - - 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-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 282536 - 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=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "282536" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" - X-Ms-Request-Id: - - 00c391a4-ff0b-497b-adc7-f239a8496259 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173823Z:00c391a4-ff0b-497b-adc7-f239a8496259 - X-Msedge-Ref: - - 'Ref A: 77CEC2C1F1C1443186E1FD1D80F4812B Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:20Z' - status: 200 OK - code: 200 - duration: 3.6457143s - - 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-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414870 - 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=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "414870" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" - X-Ms-Request-Id: - - c0f73ee2-efd7-40e2-8234-042787edb791 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173826Z:c0f73ee2-efd7-40e2-8234-042787edb791 - X-Msedge-Ref: - - 'Ref A: 3B4E6EFA3A124B838D65D3F5178838DF Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:23Z' - status: 200 OK - code: 200 - duration: 3.0255135s - - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 400530 - 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=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "400530" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" - X-Ms-Request-Id: - - fe69eba2-fa9f-4cbd-ab35-932797a1beb2 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173833Z:fe69eba2-fa9f-4cbd-ab35-932797a1beb2 - X-Msedge-Ref: - - 'Ref A: DC8B4FE9AE744F27BE5EC88DB24B3EC5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:26Z' - status: 200 OK - code: 200 - duration: 6.8578042s - - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 623057 - 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=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "623057" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" - X-Ms-Request-Id: - - 7301b945-b4ba-4890-907d-c8e915f0c34e - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173837Z:7301b945-b4ba-4890-907d-c8e915f0c34e - X-Msedge-Ref: - - 'Ref A: 2A18B4B7ACA24CDF9F88E00C343451C9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:33Z' - status: 200 OK - code: 200 - duration: 3.5385875s - - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1888 - 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=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1888" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" - X-Ms-Request-Id: - - e206f0dd-e165-4c5a-b411-f1eacf801b72 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173839Z:e206f0dd-e165-4c5a-b411-f1eacf801b72 - X-Msedge-Ref: - - 'Ref A: 061193CB7C8D47F6A05ADF476210BB94 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:37Z' - status: 200 OK - code: 200 - duration: 2.2507896s - - 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 555 - 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "555" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" - X-Ms-Request-Id: - - 74888224-7b21-4a16-abc2-4388d33e322b - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173840Z:74888224-7b21-4a16-abc2-4388d33e322b - X-Msedge-Ref: - - 'Ref A: F1D1963648C3430EA291ACF4891E7EB0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:39Z' - status: 200 OK - code: 200 - duration: 765.3133ms - - 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-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 12 - uncompressed: false - body: '{"value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "12" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" - X-Ms-Request-Id: - - e5bc4e9e-2af3-46d7-bc65-c66982769951 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173842Z:e5bc4e9e-2af3-46d7-bc65-c66982769951 - X-Msedge-Ref: - - 'Ref A: 8C2066682A93442DA92B2F197F694FCE Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:40Z' - status: 200 OK - code: 200 - duration: 1.6800196s - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 4299 - 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "4299" - Content-Type: - - application/json - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - 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: 4787 - 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "4787" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" - X-Ms-Request-Id: - - 6a7c47fd-86a1-4f9d-bcc9-65825f784825 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173842Z:6a7c47fd-86a1-4f9d-bcc9-65825f784825 - X-Msedge-Ref: - - 'Ref A: 1EEE5A4E60E64D88AD71A03CD2A12FC8 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:42Z' - status: 200 OK - code: 200 - duration: 77.7967ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 4684 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wb68583"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"}}' - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "4684" - Content-Type: - - application/json - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1555 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:38:42Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-09-19T17:38:45.5744577Z","duration":"PT0.0001585S","correlationId":"4e5cc43ee1d71e8ce8f4b6404355d970","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583-1726767316/operationStatuses/08584748393621424608?api-version=2021-04-01 - Cache-Control: - - no-cache - Content-Length: - - "1555" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:38:45 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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Deployment-Engine-Version: - - 1.109.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" - X-Ms-Request-Id: - - 0934a721-a1b5-419c-9f36-5f05b77bb03f - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173846Z:0934a721-a1b5-419c-9f36-5f05b77bb03f - X-Msedge-Ref: - - 'Ref A: E6B48C5B55DC401CA8B5858D52A69F65 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:42Z' - status: 200 OK - code: 200 - duration: 3.8900389s - - 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-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748393621424608?api-version=2021-04-01 - 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, 19 Sep 2024 17:39: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" - X-Ms-Request-Id: - - 7f9971f7-2823-4a83-aed0-cf09087206cb - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173916Z:7f9971f7-2823-4a83-aed0-cf09087206cb - X-Msedge-Ref: - - 'Ref A: FF9FED0D84FF4936913C3168DE1626B9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:16Z' - status: 200 OK - code: 200 - duration: 519.8654ms - - 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-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2483 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:38:42Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:39:04.6704664Z","duration":"PT19.0961672S","correlationId":"4e5cc43ee1d71e8ce8f4b6404355d970","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}]}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2483" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:39: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" - X-Ms-Request-Id: - - 1642afe0-73f6-4258-b693-286e19eb7f88 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173917Z:1642afe0-73f6-4258-b693-286e19eb7f88 - X-Msedge-Ref: - - 'Ref A: 0B5AF69721C64BB2A24A743C9A4B62F6 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:16Z' - status: 200 OK - code: 200 - duration: 219.71ms - - 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.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) - X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 397 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","name":"rg-azdtest-wb68583","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","DeleteAfter":"2024-09-19T18:38:42Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "397" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:39: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: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11990" - X-Ms-Request-Id: - - 56bd33ff-8d41-4eb9-ad61-96325866922e - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173917Z:56bd33ff-8d41-4eb9-ad61-96325866922e - X-Msedge-Ref: - - 'Ref A: 359896BA227F4FF2B345D43848AC41D5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:17Z' - status: 200 OK - code: 200 - duration: 75.3649ms - - 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 + - "4299" + Content-Type: + - application/json User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 - method: GET + - 12480b3bfe05809e02050ff2d5356251 + 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: 35367 + content_length: 4787 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/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: '{"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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:21 GMT + - Tue, 15 Oct 2024 01:54:47 GMT Expires: - "-1" Pragma: @@ -3120,30 +2130,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 2b2f11bc-8c49-4dec-b73c-f1ce7a195f4f + - 58ac8a43-e883-42c7-9033-118749eb340c X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173922Z:2b2f11bc-8c49-4dec-b73c-f1ce7a195f4f + - WESTUS2:20241015T015448Z:58ac8a43-e883-42c7-9033-118749eb340c X-Msedge-Ref: - - 'Ref A: 199D53A4C7AF4D96BD1D7CF3D0F641F2 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:19Z' + - 'Ref A: FD1345B889734675BB2FB7B8BAEB1914 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:48Z' status: 200 OK code: 200 - duration: 2.5573106s - - id: 47 + duration: 113.2408ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4684 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"}}' form: {} headers: Accept: @@ -3152,30 +2162,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4684" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 - method: GET + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955523 + content_length: 1960 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=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","location":"eastus2","name":"azdtest-wb68583-1726767316","properties":{"correlationId":"4e5cc43ee1d71e8ce8f4b6404355d970","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","resourceName":"rg-azdtest-wb68583","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT19.0961672S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}],"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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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":"2024-09-19T18:38:42Z"},"environmentName":{"type":"String","value":"azdtest-wb68583"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-09-19T17:39:04.6704664Z"},"tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:54:48Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"12480b3bfe05809e02050ff2d5356251","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1955523" + - "1960" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:27 GMT + - Tue, 15 Oct 2024 01:54:50 GMT Expires: - "-1" Pragma: @@ -3187,60 +2201,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 434eefec-aa01-46dd-ab77-454183747768 + - d499d883-8f46-49f1-a6f1-fd9ae3216532 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173928Z:434eefec-aa01-46dd-ab77-454183747768 + - WESTUS2:20241015T015450Z:d499d883-8f46-49f1-a6f1-fd9ae3216532 X-Msedge-Ref: - - 'Ref A: 8D76BBB9787E431EBD25D294C3C2E244 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:22Z' + - 'Ref A: BE8B14CEECC844C18A39FDCE208AA175 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:48Z' status: 200 OK code: 200 - duration: 6.0580807s - - id: 48 + duration: 2.3021298s + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4684 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4684" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d - method: GET + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + content_length: 1554 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=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:54:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T01:54:54.5253709Z","duration":"PT0.000101S","correlationId":"12480b3bfe05809e02050ff2d5356251","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4-1728957058/operationStatuses/08584726495942634078?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "282536" + - "1554" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:30 GMT + - Tue, 15 Oct 2024 01:54:54 GMT Expires: - "-1" Pragma: @@ -3252,19 +2276,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Deployment-Engine-Version: + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - bed83375-c564-40e7-80ab-ddd1adcf7cbf + - c12784f8-c083-4cf2-8b0a-2173336de3b1 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173931Z:bed83375-c564-40e7-80ab-ddd1adcf7cbf + - WESTUS2:20241015T015455Z:c12784f8-c083-4cf2-8b0a-2173336de3b1 X-Msedge-Ref: - - 'Ref A: 269172B5F09C4A868C960BA0AA1D3CD5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:28Z' + - 'Ref A: C9A3B5CA749F4F5FB53F40455477BFCD Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:54:50Z' status: 200 OK code: 200 - duration: 3.3341401s - - id: 49 + duration: 4.3107556s + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -3285,8 +2313,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/operationStatuses/08584726495942634078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3294,18 +2322,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 22 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=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:33 GMT + - Tue, 15 Oct 2024 01:55:24 GMT Expires: - "-1" Pragma: @@ -3317,19 +2345,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - "1099" X-Ms-Request-Id: - - 044f5021-4acd-413e-98e7-ce556e4daea9 + - 24f4b671-28b8-4cb6-bf1d-cb0256df1878 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173934Z:044f5021-4acd-413e-98e7-ce556e4daea9 + - WESTUS2:20241015T015525Z:24f4b671-28b8-4cb6-bf1d-cb0256df1878 X-Msedge-Ref: - - 'Ref A: 703CAC20356541B184BE7A67F8BBB811 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:31Z' + - 'Ref A: 5BD25CDDDD4A4B2887E3419DFC3C9CB7 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:25Z' status: 200 OK code: 200 - duration: 2.9185611s - - id: 50 + duration: 201.0326ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -3350,8 +2380,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3359,18 +2389,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 2482 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=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:54:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:55:16.928879Z","duration":"PT22.4036091S","correlationId":"12480b3bfe05809e02050ff2d5356251","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:36 GMT + - Tue, 15 Oct 2024 01:55:25 GMT Expires: - "-1" Pragma: @@ -3382,19 +2412,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 380ddeb8-9781-43a8-b242-710821b8f7e5 + - 8f802e27-8a07-484b-a60a-84d39395afc2 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173937Z:380ddeb8-9781-43a8-b242-710821b8f7e5 + - WESTUS2:20241015T015525Z:8f802e27-8a07-484b-a60a-84d39395afc2 X-Msedge-Ref: - - 'Ref A: 78799A785A3B40A295F73C769244420A Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:34Z' + - 'Ref A: 24159277873843699558E3BD9B479D46 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:25Z' status: 200 OK code: 200 - duration: 3.1061502s - - id: 51 + duration: 390.359ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -3408,15 +2440,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d + - 12480b3bfe05809e02050ff2d5356251 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3424,18 +2458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 397 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=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","name":"rg-azdtest-w3e3ab4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","DeleteAfter":"2024-10-15T02:54:51Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "397" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:41 GMT + - Tue, 15 Oct 2024 01:55:25 GMT Expires: - "-1" Pragma: @@ -3447,19 +2481,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - 12480b3bfe05809e02050ff2d5356251 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 584f9024-e474-4b99-a56b-6a48e9bc4f84 + - 92c13fa2-14b9-424c-9ce3-4acc83fbfb90 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173942Z:584f9024-e474-4b99-a56b-6a48e9bc4f84 + - WESTUS2:20241015T015526Z:92c13fa2-14b9-424c-9ce3-4acc83fbfb90 X-Msedge-Ref: - - 'Ref A: 98E4AE2FECE341E984BC69ED5A7F7746 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:37Z' + - 'Ref A: 630CFAEA6844495BAF37743CD037ED91 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:25Z' status: 200 OK code: 200 - duration: 4.7785792s - - id: 52 + duration: 108.7789ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -3473,15 +2509,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d + - 6339798e14641a660712c541dec13cce + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: proto: HTTP/2.0 @@ -3489,18 +2527,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 35367 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=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d","value":[]}' + 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/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"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "35367" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:43 GMT + - Tue, 15 Oct 2024 01:55:32 GMT Expires: - "-1" Pragma: @@ -3512,19 +2550,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - 6339798e14641a660712c541dec13cce + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - e567036d-e0a2-4538-8194-dd8784ffcb03 + - 1127256c-899e-4092-8b5b-5e9ee20a3264 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173944Z:e567036d-e0a2-4538-8194-dd8784ffcb03 + - WESTUS2:20241015T015533Z:1127256c-899e-4092-8b5b-5e9ee20a3264 X-Msedge-Ref: - - 'Ref A: CB7452AD06744939818A8D84C3ABA392 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:42Z' + - 'Ref A: 1D47493B72C5439690E8CD74845968B1 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:29Z' status: 200 OK code: 200 - duration: 1.6673708s - - id: 53 + duration: 3.4919282s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -3538,6 +2578,8 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: @@ -3545,8 +2587,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d + - 6339798e14641a660712c541dec13cce + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3554,18 +2596,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 2189662 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","location":"eastus2","name":"azdtest-w3e3ab4-1728957058","properties":{"correlationId":"12480b3bfe05809e02050ff2d5356251","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","resourceName":"rg-azdtest-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT22.4036091S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}],"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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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":"2024-10-15T02:54:51Z"},"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T01:55:16.928879Z"},"tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "555" + - "2189662" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:44 GMT + - Tue, 15 Oct 2024 01:55:40 GMT Expires: - "-1" Pragma: @@ -3577,19 +2619,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - 6339798e14641a660712c541dec13cce + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - "1099" X-Ms-Request-Id: - - 22b61d39-15e4-4b46-a70d-9c38c233211a + - 0cddce98-a6fb-4797-9bd6-4cd23465da80 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173945Z:22b61d39-15e4-4b46-a70d-9c38c233211a + - WESTUS2:20241015T015540Z:0cddce98-a6fb-4797-9bd6-4cd23465da80 X-Msedge-Ref: - - 'Ref A: 2FD09AD5227B49698BFD728A487D7C46 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:44Z' + - 'Ref A: 0D7DE1162A424080A27F96260090CE4B Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:33Z' status: 200 OK code: 200 - duration: 846.5785ms - - id: 54 + duration: 7.642329s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -3610,8 +2654,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv + - 6339798e14641a660712c541dec13cce + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -3619,18 +2663,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 867605 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:44 GMT + - Tue, 15 Oct 2024 01:55:45 GMT Expires: - "-1" Pragma: @@ -3642,66 +2686,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - 6339798e14641a660712c541dec13cce + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - ec826900-d6e3-4d3a-937a-81e8beec91d7 + - 6ff4c13d-254f-4073-963c-730be50a24b4 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173945Z:ec826900-d6e3-4d3a-937a-81e8beec91d7 + - WESTUS2:20241015T015546Z:6ff4c13d-254f-4073-963c-730be50a24b4 X-Msedge-Ref: - - 'Ref A: 29DC70174B9347428E146AEFEE71C53D Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:45Z' + - 'Ref A: B4F278540F994FC2A7CE6B0DE3A485B3 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:41Z' status: 200 OK code: 200 - duration: 662.7109ms - - id: 55 + duration: 5.1414257s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4299 + 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4299" - Content-Type: - - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 - method: POST + - 6339798e14641a660712c541dec13cce + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4787 + content_length: 582659 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:45 GMT + - Tue, 15 Oct 2024 01:55:50 GMT Expires: - "-1" Pragma: @@ -3713,19 +2753,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - 6339798e14641a660712c541dec13cce + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - e0608264-ee7b-491c-8dfb-0d90d8f8a9a7 + - 8cd845fc-3831-44e8-8b77-68c515153148 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173945Z:e0608264-ee7b-491c-8dfb-0d90d8f8a9a7 + - WESTUS2:20241015T015550Z:8cd845fc-3831-44e8-8b77-68c515153148 X-Msedge-Ref: - - 'Ref A: 51388CC1FD1840B68E12A16D4765A5E9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:45Z' + - 'Ref A: A2B777F565EF419B97C9D42C77917B85 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:46Z' status: 200 OK code: 200 - duration: 48.2921ms - - id: 56 + duration: 4.0662639s + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -3739,17 +2781,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + - 6339798e14641a660712c541dec13cce + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -3757,18 +2797,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 262264 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/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":[]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:50 GMT + - Tue, 15 Oct 2024 01:55:52 GMT Expires: - "-1" Pragma: @@ -3780,30 +2820,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d + - 6339798e14641a660712c541dec13cce + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b4f567b0-cd81-4c7b-82d7-7273132b7ca6 + - 3de737df-80b8-4547-a2bb-04b533ed743b X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173951Z:b4f567b0-cd81-4c7b-82d7-7273132b7ca6 + - WESTUS2:20241015T015553Z:3de737df-80b8-4547-a2bb-04b533ed743b X-Msedge-Ref: - - 'Ref A: 6B1F3AFC371D4E9482CE70E77057D970 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:48Z' + - 'Ref A: 5B4D61BCE4584A8CA3896C4E7C864DB0 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:50Z' status: 200 OK code: 200 - duration: 2.9566648s - - id: 57 + duration: 2.6338068s + - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4684 + content_length: 4299 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wb68583"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' form: {} headers: Accept: @@ -3813,35 +2855,33 @@ interactions: Authorization: - SANITIZED Content-Length: - - "4684" + - "4299" Content-Type: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 - method: PUT + - 6339798e14641a660712c541dec13cce + 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: 1555 + content_length: 4787 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:39:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-09-19T17:39:55.2126074Z","duration":"PT0.0002862S","correlationId":"52d37223567d2186b2d140a95853a28d","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748392929734966?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1555" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:54 GMT + - Tue, 15 Oct 2024 01:55:52 GMT Expires: - "-1" Pragma: @@ -3853,21 +2893,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - X-Ms-Deployment-Engine-Version: - - 1.109.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - 6339798e14641a660712c541dec13cce + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 26388dc6-218d-4969-899b-33e89f510435 + - 1859af58-b2d8-444d-8a85-b6537801cd9c X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173955Z:26388dc6-218d-4969-899b-33e89f510435 + - WESTUS2:20241015T015553Z:1859af58-b2d8-444d-8a85-b6537801cd9c X-Msedge-Ref: - - 'Ref A: 257E000E1698422A9F9BD5334D1B4C7A Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:51Z' + - 'Ref A: 5C83124F666A4F7A845CFD5557176030 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:53Z' status: 200 OK code: 200 - duration: 4.3567755s - - id: 58 + duration: 107.5661ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3881,15 +2919,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748392929734966?api-version=2021-04-01 + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: proto: HTTP/2.0 @@ -3897,18 +2937,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 35367 uncompressed: false - body: '{"status":"Succeeded"}' + 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/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"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "35367" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:25 GMT + - Tue, 15 Oct 2024 01:56:00 GMT Expires: - "-1" Pragma: @@ -3920,60 +2960,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d + - c6f61c161563698758fb3e34d2664018 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - d7f2bcfe-5b63-4c54-83a6-bf99ecdf58f6 + - 07326bc4-5cb1-4e37-aacb-239c469797e9 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174026Z:d7f2bcfe-5b63-4c54-83a6-bf99ecdf58f6 + - WESTUS2:20241015T015600Z:07326bc4-5cb1-4e37-aacb-239c469797e9 X-Msedge-Ref: - - 'Ref A: F4C4B7BF3A2E46D098E77F521CA8190F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:26Z' + - 'Ref A: F4708108BDD146979019E1EDB7029AA7 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:55:57Z' status: 200 OK code: 200 - duration: 555.8339ms - - id: 59 + duration: 2.7035262s + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4684 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4684" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 - method: GET + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2483 + content_length: 1960 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:39:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:40:18.8642287Z","duration":"PT23.6519075S","correlationId":"52d37223567d2186b2d140a95853a28d","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:56:01Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"c6f61c161563698758fb3e34d2664018","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2483" + - "1960" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:26 GMT + - Tue, 15 Oct 2024 01:56:02 GMT Expires: - "-1" Pragma: @@ -3985,30 +3033,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - c6f61c161563698758fb3e34d2664018 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 3ecb5216-bdd9-4ef9-a3b2-b8afe0e6be59 + - 4837aa97-1294-4d2b-9b9f-6fcef1388520 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174027Z:3ecb5216-bdd9-4ef9-a3b2-b8afe0e6be59 + - WESTUS2:20241015T015602Z:4837aa97-1294-4d2b-9b9f-6fcef1388520 X-Msedge-Ref: - - 'Ref A: BBAF38DDDCAC47D9AE83264A53CBE03D Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:26Z' + - 'Ref A: CD877E3D679F4B338007BFF6A0F93C73 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:56:00Z' status: 200 OK code: 200 - duration: 454.9592ms - - id: 60 + duration: 2.0578976s + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4684 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"}}' form: {} headers: Accept: @@ -4017,30 +3067,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4684" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 - method: GET + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 405 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","name":"rg-azdtest-wb68583","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","DeleteAfter":"2024-09-19T18:39:51Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"error":{"code":"PolicyEvaluationFailure","message":"The template deployment failed because of a policy evaluation failure. Please see details for more information.","details":[{"code":"ServerTimeout","message":"The request timed out. Diagnostic information: timestamp ''20241015T015651Z'', subscription id '''', tracking id ''00000000-0000-0000-0000-000000000000'', request correlation id ''''."}]}}' headers: Cache-Control: - no-cache Content-Length: - - "397" + - "405" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:26 GMT + - Tue, 15 Oct 2024 01:56:54 GMT Expires: - "-1" Pragma: @@ -4052,30 +3106,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - c6f61c161563698758fb3e34d2664018 + X-Ms-Failure-Cause: + - gateway + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "12000" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "800" X-Ms-Request-Id: - - 32a9db12-b5dd-4164-b60c-4f0723a36f16 + - ee3d5baf-4834-4e58-99ae-f2e6e74fa303 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174027Z:32a9db12-b5dd-4164-b60c-4f0723a36f16 + - WESTUS2:20241015T015655Z:ee3d5baf-4834-4e58-99ae-f2e6e74fa303 X-Msedge-Ref: - - 'Ref A: 967E9345A27E49708B2D93394B77B3CB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:27Z' - status: 200 OK - code: 200 - duration: 77.0346ms - - id: 61 + - 'Ref A: 1480CF2A742543B180CF195D9227E7D6 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:56:02Z' + status: 503 Service Unavailable + code: 503 + duration: 52.6454534s + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4684 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w3e3ab4"},"intTagValue":{"value":1989},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"}}' form: {} headers: Accept: @@ -4084,30 +3142,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4684" + Content-Type: + - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 - method: GET + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955523 + content_length: 1555 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=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","location":"eastus2","name":"azdtest-wb68583-1726767316","properties":{"correlationId":"52d37223567d2186b2d140a95853a28d","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","resourceName":"rg-azdtest-wb68583","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT23.6519075S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}],"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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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":"2024-09-19T18:39:51Z"},"environmentName":{"type":"String","value":"azdtest-wb68583"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-09-19T17:40:18.8642287Z"},"tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:56:56Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T01:56:59.3615364Z","duration":"PT0.0009076S","correlationId":"c6f61c161563698758fb3e34d2664018","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4-1728957058/operationStatuses/08584726494684977407?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1955523" + - "1555" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:34 GMT + - Tue, 15 Oct 2024 01:56:59 GMT Expires: - "-1" Pragma: @@ -4119,19 +3183,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - c6f61c161563698758fb3e34d2664018 + X-Ms-Deployment-Engine-Version: + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 54c5cf77-597e-4aee-8361-5970d53dd9db + - d7558226-bc51-4350-967f-ee0cce6ba2bf X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174035Z:54c5cf77-597e-4aee-8361-5970d53dd9db + - WESTUS2:20241015T015659Z:d7558226-bc51-4350-967f-ee0cce6ba2bf X-Msedge-Ref: - - 'Ref A: AAC92201146541F8A5BA6212A9866196 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:29Z' + - 'Ref A: 414E2D017F8C472ABB3374503747B1E1 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:56:56Z' status: 200 OK code: 200 - duration: 5.6631207s - - id: 62 + duration: 3.6726842s + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -4152,8 +3220,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZFPa8JAFMQ%2fi3u2sEm1FG%2bbvCdofS%2fuZjfF3iS1kkQSaCP5I373Ji099GqhpznM%2fGCGuYi0KuusPO%2frrCptVRzKD7G4iKVRHGKIbI3aiEV5Pp2mAlVsXeyPfnlo6%2b3%2bvc5G7OnQiYXwJo8TtruW%2bt2dmH4lTNX8eJ6cTUyxDAiOjXYvQE7PGILAwAm0TJbkULINQNskZPv6ZjyONrFsInBDLvUIVpL7tB14n3P0KfM4BjUnmz5QoVvuVz7bY0eQ%2buI6Fc8YW3Qm2uJtdWd%2frNsrn3vdUJ7OKXcdxV4Q5Wt0UHUGcahsWDv3rclxVEd28GA1MLqJLMoE1D1BISnHOfXr%2fTgrVKxAjUf8PuW2kf%2f6yfX6CQ%3d%3d + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/operationStatuses/08584726494684977407?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4161,18 +3229,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + content_length: 22 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=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:38 GMT + - Tue, 15 Oct 2024 01:57:30 GMT Expires: - "-1" Pragma: @@ -4184,19 +3252,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - c6f61c161563698758fb3e34d2664018 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - a1a91796-2f82-45cd-b64a-5aec2964d65e + - 22ac000b-e7f7-48fb-9cb1-92cfc019267a X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174039Z:a1a91796-2f82-45cd-b64a-5aec2964d65e + - WESTUS2:20241015T015730Z:22ac000b-e7f7-48fb-9cb1-92cfc019267a X-Msedge-Ref: - - 'Ref A: DEF7B6A0EA6740A0BB70B7791FB41E33 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:35Z' + - 'Ref A: A6A128348FE940848CCD13ABE7DC7DA9 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:30Z' status: 200 OK code: 200 - duration: 3.591993s - - id: 63 + duration: 456.5587ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -4217,8 +3287,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4226,18 +3296,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 2482 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=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:56:56Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:57:09.0627561Z","duration":"PT9.7021273S","correlationId":"c6f61c161563698758fb3e34d2664018","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:40 GMT + - Tue, 15 Oct 2024 01:57:30 GMT Expires: - "-1" Pragma: @@ -4249,19 +3319,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - c6f61c161563698758fb3e34d2664018 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - b011369b-0259-4003-b7b9-aac66cf28602 + - dd792293-674e-4359-8b5e-66570afc6110 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174041Z:b011369b-0259-4003-b7b9-aac66cf28602 + - WESTUS2:20241015T015731Z:dd792293-674e-4359-8b5e-66570afc6110 X-Msedge-Ref: - - 'Ref A: 19E7B879435C4C128DEC7386C2EF6188 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:39Z' + - 'Ref A: 5177F1F87E894172A3F851E8282B3509 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:30Z' status: 200 OK code: 200 - duration: 2.604763s - - id: 64 + duration: 184.1166ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -4275,15 +3347,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZPNbsIwEISfBZ%2bLlASoEDcndlQouyGOlyrcEKVRQpRILSg%2fiHevQ8SJnuiBg2V7d2Tt6Buf2a4sjmlx2h7TstDlYV%2f8sNmZSR5pipzuWOzr42r7fUw7xfu%2bYTNmD6YD1HENbTxkL1eFKqtbz7amA3XwXRBJFdJGAIVjFK6rRC5Ca%2b0DSQu1K0K99lB%2ffikbg2VkVYEgo9vZ0CYVtHKM2a6GLHQwtTGSvtHPnSBbSNC7BrO5WeRgMhyyywv7kJGWpIKVfGzkifOvkVEcHBDggIYxZMkYPNvtRiVRNkrKVzgoYyHsdqlo466pJmpNzw%2fbq6WMNyj4BPSCzDtVoMlYj0eYl1d7PY7HrD2BBgZKvz0VR5ec2OBIbGxhAuk9jpDoLxz1HQ7NDQ5oTRobWPc4urRdf0dxyvM%2bfBSN2Ky%2f%2boqjJz2JWvHlrehx5IJ3HPvK5fIL + - c6f61c161563698758fb3e34d2664018 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4291,18 +3365,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 397 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=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","name":"rg-azdtest-w3e3ab4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","DeleteAfter":"2024-10-15T02:56:56Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "397" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:44 GMT + - Tue, 15 Oct 2024 01:57:30 GMT Expires: - "-1" Pragma: @@ -4314,19 +3388,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - c6f61c161563698758fb3e34d2664018 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1098" X-Ms-Request-Id: - - ea2639d3-c159-4004-bc51-8f218d434be3 + - b1ed0de1-2442-4a3a-90d3-b79c147579c6 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174045Z:ea2639d3-c159-4004-bc51-8f218d434be3 + - WESTUS2:20241015T015731Z:b1ed0de1-2442-4a3a-90d3-b79c147579c6 X-Msedge-Ref: - - 'Ref A: D55BD123A40847C4A7E2B43723524A51 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:41Z' + - 'Ref A: BDCD2C57CB994FF19536ED1C714C3778 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:31Z' status: 200 OK code: 200 - duration: 3.4778358s - - id: 65 + duration: 56.1921ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -4340,6 +3416,8 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: @@ -4347,8 +3425,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZNba9tAEIV%2fi%2fUcgyTLJfht5V0Ru5nZ7GUUnDfjuMYrIUHroEvwf%2b9KIoXSl%2bI85Gkvc3aZw%2fnmPTjU1eVcve0v57qydXGsfgWr90AwY8nEw7Y6tpen%2fc%2fLeVB8P3bBKohm9zO0uxb63Ty4GxW6bj5qUXg%2f00WWAj81il44kEqQp6nmJVdhngGJEG3Klc3XaF9%2f6AjlowkbycnrDhFy1qCFFp1KpIUezhEakcu8KI10WwH20KHbNOi8Rs3nwfUueBbGCtLySdzW8jL%2bXMuWFsCLUPJTDz1r5TpKh1aJ150W4hsU2ltQwyo0vaQ5tUS9r2WqGy051nnbS7AZgWWNtMJb3ySY1aO9KY7brH1BGii1ffjKOHgRA4cYLCTgTgn8fxz933Fsyf%2fj46AW3G6B5RSHeRZc4Fqg1ezxtlSS5FPAechi7FUD7rAERx2Yf4FTRCN4Kj8NqwfLA8c3%2fo0aAAtzzkZowYkl9Nv9xxyNc1%2b9leU0VmQWwWo6Zpp51398T5drhoyzgdBJdr3%2bBg%3d%3d + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4356,18 +3434,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 2189662 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=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","location":"eastus2","name":"azdtest-w3e3ab4-1728957058","properties":{"correlationId":"c6f61c161563698758fb3e34d2664018","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","resourceName":"rg-azdtest-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT9.7021273S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}],"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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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":"2024-10-15T02:56:56Z"},"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"intTagValue":{"type":"Int","value":1989},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T01:57:09.0627561Z"},"tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "2189662" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:48 GMT + - Tue, 15 Oct 2024 01:57:40 GMT Expires: - "-1" Pragma: @@ -4379,19 +3457,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1100" X-Ms-Request-Id: - - d9697262-6c3b-4dba-920c-89fcaceb8ead + - e0586917-1eef-495e-bf13-fc8ca45ed9fa X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174049Z:d9697262-6c3b-4dba-920c-89fcaceb8ead + - WESTUS2:20241015T015741Z:e0586917-1eef-495e-bf13-fc8ca45ed9fa X-Msedge-Ref: - - 'Ref A: 8D2E3BAD5CBB41539AB0A363264D55FB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:45Z' + - 'Ref A: 97FFC4E8F40D4AA28D8A9F2C98299A90 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:35Z' status: 200 OK code: 200 - duration: 4.018676s - - id: 66 + duration: 6.4365442s + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -4412,8 +3492,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZLLbsIwEEW%2fBa9BimmMWnYOY1dQxsGODaI7RClKghKpDcoD8e%2bNUVlXahddjeYl3XtmLmRfFlVanHdVWha2zA%2fFJ5leyEYk1iVjMi3Op9OQCP6dXkhxaKrV7qNK%2fcLLoSVTQgePA2W3DXbbERneJkxZ33uUjgcmlxHCsdbuFdDpUEEUGTiBDtYSnQiUjUDb9UzZt3dDVbxMgjoG18%2ftOwTRoN3XsUWGgCGm1CXOSCeeVhZEjZZPMNeN6uahsjlVWc7I9a7Zm%2fkHyZyp7thixx%2bw0%2bwHyQ89msBLnnHFgXvYd%2fDJRoBQM6Gs4cvfeWGTv%2bBvY5uHCHOK4HrER6YSGsXZQrisbI3EHr2xPl8H8tlH7ZqFCZg04Pu68TXMeKtup5Ludk6Y1%2f2zMCXLEbler18%3d method: GET response: proto: HTTP/2.0 @@ -4421,18 +3501,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 867605 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=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "867605" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:50 GMT + - Tue, 15 Oct 2024 01:57:46 GMT Expires: - "-1" Pragma: @@ -4444,19 +3524,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 924b3c4d-7a18-41b6-9b3c-156702e8e1e2 + - 118b3c9e-b784-47ab-9006-4d579317c1af X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174051Z:924b3c4d-7a18-41b6-9b3c-156702e8e1e2 + - WESTUS2:20241015T015746Z:118b3c9e-b784-47ab-9006-4d579317c1af X-Msedge-Ref: - - 'Ref A: E164E596A35B43FBA236CC8033F10116 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:49Z' + - 'Ref A: 56703E87C9DB4D3CAC4B397E5ACDF32F Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:41Z' status: 200 OK code: 200 - duration: 2.4247887s - - id: 67 + duration: 4.9192778s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -4477,8 +3559,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=XZDBasJAEEC%2fxT0rmKileNtkJhTrTMzujqI3sVZMQgJtJFHx35tULG1Pc3hvBuZd1a4sqmNx2lbHsnBlti8%2b1fSqODbuBcXEC1TT4pTnfWVXCMghsjN63jnFvqkW24%2fq2K2%2b7s9qqrzec4%2fduqHLeqD634Yp6wfzJn7PZFFAcKgT2QBJMmYIAgM5JMNlRIJDdgEkbhmye3s3HsdzO6xjkNbbeQyZT0A%2bORpTehhT6AVxOkOB8mwQnygzbDHpJhrZBEtpRC4ti5JL51Gqzwx6Qm4m7Z06dtJQuh5xXg7Ura9QWyfWfzy8Quv%2bJrgLv%2fk%2fXezoQSOj21g%2fue4NQ80adHfmrt1uXw%3d%3d + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZPbjtowEIafhVwvksOGasWdk3G0dBl77YyD0jvE0pQEJVXLKocV71470BeAO4%2f8X3zfHL6Cfducj83n7nxsG2rrQ%2fM3WH0Fgmdks4V%2fNof%2b%2fL77cz76xNthCFZBOHuZSSp6HIt58DQlTNv9%2fwvZy8zUaYxQdtr%2bALQ6khDHBk6gWZ6iFUxSDJryRNLHTxNKtclYp8C63H7ECnsFLgNlJEfL5BC%2bZTZVmV2%2bquq7QNoPCvBZEmeynM%2bDy9ON9z7cRfQYLhUMR3TodiGpDGUSWpNL61Fzgd%2bwNrERvzeU8khR6Wrdy3Ht8nqQtO49frYVIGQiJBm%2buc8ierDpsF9iVTIE7CXVS0zC2BvYqh1MOlnQZHTKkeqULGPezCK5f1h3WOkeQXQ58AGJ90iFG96vnbfbioyENepd3Ke2XDwyoEF5FNAhEo6KXOOHmxo4dCG8hrTT26Rub3NKzVUVvLYeENZsUsp1p0h0OPJQQhFtb7vn9Wz2HKyaz9PpajudzrVMuOTA%2fT1dA5fLPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -4486,18 +3568,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 582659 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "555" + - "582659" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:51 GMT + - Tue, 15 Oct 2024 01:57:49 GMT Expires: - "-1" Pragma: @@ -4509,19 +3591,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6aaad83c-0941-4f41-8740-0bfda408aaad + - ad0803a7-8f19-48cf-b9b6-344f48e04722 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174052Z:6aaad83c-0941-4f41-8740-0bfda408aaad + - WESTUS2:20241015T015750Z:ad0803a7-8f19-48cf-b9b6-344f48e04722 X-Msedge-Ref: - - 'Ref A: DAE6AF4853B340A6BF054F351FE9187F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:51Z' + - 'Ref A: 9CC27D193C0F43F6B3622CABC3992FD6 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:46Z' status: 200 OK code: 200 - duration: 1.0682906s - - id: 68 + duration: 3.6180405s + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -4542,8 +3626,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -4551,18 +3635,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:52 GMT + - Tue, 15 Oct 2024 01:57:52 GMT Expires: - "-1" Pragma: @@ -4574,19 +3658,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - bdccc9f2-7b4e-4afb-8bf0-3e403607d85e + - fa7401eb-3560-4615-9746-c3246a3b12aa X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174053Z:bdccc9f2-7b4e-4afb-8bf0-3e403607d85e + - WESTUS2:20241015T015753Z:fa7401eb-3560-4615-9746-c3246a3b12aa X-Msedge-Ref: - - 'Ref A: 6C0434BC0B644CB4BFABAD0F40F24C32 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:52Z' + - 'Ref A: D60052C8F9D842AD98C25990727510D0 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:50Z' status: 200 OK code: 200 - duration: 951.3033ms - - id: 69 + duration: 2.9384342s + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -4609,8 +3695,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4618,18 +3704,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2483 + content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:39:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:40:18.8642287Z","duration":"PT23.6519075S","correlationId":"52d37223567d2186b2d140a95853a28d","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:56:56Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:57:09.0627561Z","duration":"PT9.7021273S","correlationId":"c6f61c161563698758fb3e34d2664018","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2483" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 15 Oct 2024 01:57:53 GMT Expires: - "-1" Pragma: @@ -4641,19 +3727,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 7d64e986-130d-4ad0-bbe0-4a71d21db631 + - fa215917-9ce9-4b76-9db0-133a82615ce8 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:7d64e986-130d-4ad0-bbe0-4a71d21db631 + - WESTUS2:20241015T015753Z:fa215917-9ce9-4b76-9db0-133a82615ce8 X-Msedge-Ref: - - 'Ref A: C775A1954D2542169610AAFDEA244B9F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:53Z' + - 'Ref A: EBEF8BC67B884AFDAE0A71C4ABF14874 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:53Z' status: 200 OK code: 200 - duration: 371.8085ms - - id: 70 + duration: 328.5329ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -4676,8 +3764,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4687,7 +3775,7 @@ interactions: trailer: {} content_length: 397 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","name":"rg-azdtest-wb68583","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","DeleteAfter":"2024-09-19T18:39:51Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","name":"rg-azdtest-w3e3ab4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","DeleteAfter":"2024-10-15T02:56:56Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -4696,7 +3784,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 15 Oct 2024 01:57:53 GMT Expires: - "-1" Pragma: @@ -4708,19 +3796,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - a2707f8a-2980-4a01-8b64-79e4bea446f5 + - effc26d0-98a9-4d8b-9d10-af5d9c8f53a5 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:a2707f8a-2980-4a01-8b64-79e4bea446f5 + - WESTUS2:20241015T015754Z:effc26d0-98a9-4d8b-9d10-af5d9c8f53a5 X-Msedge-Ref: - - 'Ref A: 20971CF4388148DC98957F5C3FA145F7 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: 81F357504AF54D76A6E3374A00F3A5E6 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:53Z' status: 200 OK code: 200 - duration: 88.0796ms - - id: 71 + duration: 57.659ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4743,8 +3833,8 @@ interactions: User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/resources?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4754,7 +3844,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","name":"stmjvmirceqdbxc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","name":"stdzyt7z6dr2zdw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4"}}]}' headers: Cache-Control: - no-cache @@ -4763,7 +3853,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 15 Oct 2024 01:57:53 GMT Expires: - "-1" Pragma: @@ -4775,19 +3865,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 22f2cf11-2cce-47aa-9b00-3d5cf84cb839 + - e870f21a-1252-4b53-b818-fd56995bb381 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:22f2cf11-2cce-47aa-9b00-3d5cf84cb839 + - WESTUS2:20241015T015754Z:e870f21a-1252-4b53-b818-fd56995bb381 X-Msedge-Ref: - - 'Ref A: D675C34FF72940CB880B01F92657BF91 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: 83EABEA816214E51B14D69E28A7AD214 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:54Z' status: 200 OK code: 200 - duration: 207.9244ms - - id: 72 + duration: 265.1951ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -4810,8 +3902,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4819,18 +3911,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2483 + content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:39:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:40:18.8642287Z","duration":"PT23.6519075S","correlationId":"52d37223567d2186b2d140a95853a28d","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:56:56Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:57:09.0627561Z","duration":"PT9.7021273S","correlationId":"c6f61c161563698758fb3e34d2664018","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2483" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 15 Oct 2024 01:57:53 GMT Expires: - "-1" Pragma: @@ -4842,19 +3934,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 261b21f7-c547-475a-976b-38bdbf58b3b8 + - 8e20d402-8403-43e3-aaca-2bb6b9bf9431 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:261b21f7-c547-475a-976b-38bdbf58b3b8 + - WESTUS2:20241015T015754Z:8e20d402-8403-43e3-aaca-2bb6b9bf9431 X-Msedge-Ref: - - 'Ref A: B1A48AA0C443408FB539174BC329F8E4 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: 0B538EE79DAD41A2A5F765FC6CA745B3 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:54Z' status: 200 OK code: 200 - duration: 237.9343ms - - id: 73 + duration: 193.1697ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -4877,8 +3971,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wb68583%27&api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w3e3ab4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4888,7 +3982,7 @@ interactions: trailer: {} content_length: 397 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583","name":"rg-azdtest-wb68583","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","DeleteAfter":"2024-09-19T18:39:51Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4","name":"rg-azdtest-w3e3ab4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","DeleteAfter":"2024-10-15T02:56:56Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -4897,7 +3991,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 15 Oct 2024 01:57:53 GMT Expires: - "-1" Pragma: @@ -4909,19 +4003,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - ea676258-e4d2-47b5-989e-1ba2e3993ce8 + - 39a8b54b-1aa9-414b-b301-2b60679cd9ca X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:ea676258-e4d2-47b5-989e-1ba2e3993ce8 + - WESTUS2:20241015T015754Z:39a8b54b-1aa9-414b-b301-2b60679cd9ca X-Msedge-Ref: - - 'Ref A: 3EA5A4CA8BD242A0811BDF201192FB7E Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: 55941F13E968407E9A1A80A3D4820C92 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:54Z' status: 200 OK code: 200 - duration: 79.5469ms - - id: 74 + duration: 94.8515ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -4944,8 +4040,8 @@ interactions: User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/resources?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4955,7 +4051,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc","name":"stmjvmirceqdbxc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw","name":"stdzyt7z6dr2zdw","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4"}}]}' headers: Cache-Control: - no-cache @@ -4964,7 +4060,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:54 GMT + - Tue, 15 Oct 2024 01:57:54 GMT Expires: - "-1" Pragma: @@ -4976,19 +4072,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - "1099" X-Ms-Request-Id: - - 0980e470-3dc5-456d-8a7a-8bae5f8e8f97 + - c00c058b-e33a-41e5-927c-1e6c59134d75 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174055Z:0980e470-3dc5-456d-8a7a-8bae5f8e8f97 + - WESTUS2:20241015T015754Z:c00c058b-e33a-41e5-927c-1e6c59134d75 X-Msedge-Ref: - - 'Ref A: F7711D5EE1004808A2FAC2C5AB8E7FB5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: F7448D2EE0F1410B809BCC48AAF94C74 Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:54Z' status: 200 OK code: 200 - duration: 503.451ms - - id: 75 + duration: 207.2671ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -5011,8 +4109,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wb68583?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w3e3ab4?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -5029,11 +4127,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 19 Sep 2024 17:40:55 GMT + - Tue, 15 Oct 2024 01:57:55 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQjY4NTgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638623645798106162&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=2e85k1Je5SrJ2z1aao9dS-dgmrZh-5dTZNqsmfrmt5Cwgyy7fawjmwZQhaDzjubyF-md9LB4LiVMuORf6zZjetl8Ggx7ZmK4kKMRH1qN5hIQN_Z4e3ioVBRKddTlEpS9TufOGifbLgQGq2Na9xoQO_mfLojJsDsTuPnaP98ZxpVlq2lw5GN0F77wY7ghYfEDkHmlPzYp9FYgLKc6jbNuVIKIhuTHo85IusZTjbJ0da0Z0wpjNgtdEaG6HNI8RFuQQGU3qCewQyPWgUrheaDRT6hfuy7vSaGxFF2yZcugFxfYX7LqmkG-QuT2ILvkc3KVvXwD1sJbwHtPFzbfeRalCg&h=J9hroi2gS064tMwv8j4sx5zMkZ_ncDWaLUh-uH-FY5c + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXM0UzQUI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645543991491785&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=QMWtxEtH9i_7mcapzwin0yDgbGOhM4kmAVl4PolT1wDbJnm1xvYw9wTeVOcPwgfWWhDZUkvzLWfu26jGiaSj2ViX3tq6qSgdmV2IbE5R4X0il9d4NCOpK3YNsTGkzwDr-_cOtAMSSUhhSKKcWfLNWXeQ42ENjejM8tFnm2HoMi79HkDcLdrkRi9K2R7z3pCJUBak27lqIfzCoIL5zC7BiBdXkW_SN2vr8LfJvZyPoyQ1UrHpHT2hWg98o6n5cwNIvKbdc-aDVgTbuvKTHhGyS_x1swGhlTcy3SeeeHdesQPEcrz5vQ3cMfOHXpeO9C9RoTSqHiEEtBeahLYtnHsdqA&h=93uKnuTGtlGhIJLh6p9YNoF0-PW1iQa2b-jgHMT7U_o Pragma: - no-cache Retry-After: @@ -5045,19 +4143,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - 895d9bc3-8726-4796-8978-67f93122de75 + - 2eab3ed0-896d-4ee0-8023-5619bac1afe6 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174056Z:895d9bc3-8726-4796-8978-67f93122de75 + - WESTUS2:20241015T015756Z:2eab3ed0-896d-4ee0-8023-5619bac1afe6 X-Msedge-Ref: - - 'Ref A: 9F0CD7ED02D549D2AC487D2539F52266 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:55Z' + - 'Ref A: A52AAD53256E45CFB9EF684FFAAA742F Ref B: CO6AA3150217019 Ref C: 2024-10-15T01:57:54Z' status: 202 Accepted code: 202 - duration: 1.2709377s - - id: 76 + duration: 1.170372s + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -5078,8 +4178,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQjY4NTgzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638623645798106162&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=2e85k1Je5SrJ2z1aao9dS-dgmrZh-5dTZNqsmfrmt5Cwgyy7fawjmwZQhaDzjubyF-md9LB4LiVMuORf6zZjetl8Ggx7ZmK4kKMRH1qN5hIQN_Z4e3ioVBRKddTlEpS9TufOGifbLgQGq2Na9xoQO_mfLojJsDsTuPnaP98ZxpVlq2lw5GN0F77wY7ghYfEDkHmlPzYp9FYgLKc6jbNuVIKIhuTHo85IusZTjbJ0da0Z0wpjNgtdEaG6HNI8RFuQQGU3qCewQyPWgUrheaDRT6hfuy7vSaGxFF2yZcugFxfYX7LqmkG-QuT2ILvkc3KVvXwD1sJbwHtPFzbfeRalCg&h=J9hroi2gS064tMwv8j4sx5zMkZ_ncDWaLUh-uH-FY5c + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXM0UzQUI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645543991491785&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=QMWtxEtH9i_7mcapzwin0yDgbGOhM4kmAVl4PolT1wDbJnm1xvYw9wTeVOcPwgfWWhDZUkvzLWfu26jGiaSj2ViX3tq6qSgdmV2IbE5R4X0il9d4NCOpK3YNsTGkzwDr-_cOtAMSSUhhSKKcWfLNWXeQ42ENjejM8tFnm2HoMi79HkDcLdrkRi9K2R7z3pCJUBak27lqIfzCoIL5zC7BiBdXkW_SN2vr8LfJvZyPoyQ1UrHpHT2hWg98o6n5cwNIvKbdc-aDVgTbuvKTHhGyS_x1swGhlTcy3SeeeHdesQPEcrz5vQ3cMfOHXpeO9C9RoTSqHiEEtBeahLYtnHsdqA&h=93uKnuTGtlGhIJLh6p9YNoF0-PW1iQa2b-jgHMT7U_o method: GET response: proto: HTTP/2.0 @@ -5096,7 +4196,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 19 Sep 2024 17:43:15 GMT + - Tue, 15 Oct 2024 02:00:13 GMT Expires: - "-1" Pragma: @@ -5108,19 +4208,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - f5db87fa-fdd6-49bb-90f2-b742e5b70647 + - 53482eed-1266-40f3-ab88-c1641d6b3986 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174315Z:f5db87fa-fdd6-49bb-90f2-b742e5b70647 + - WESTUS2:20241015T020014Z:53482eed-1266-40f3-ab88-c1641d6b3986 X-Msedge-Ref: - - 'Ref A: 17370A64E93F4B6BBD279A7798E95FF3 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:14Z' + - 'Ref A: 9274A8D1996244F8981238D4892ECA09 Ref B: CO6AA3150217019 Ref C: 2024-10-15T02:00:14Z' status: 200 OK code: 200 - duration: 467.9547ms - - id: 77 + duration: 482.6063ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -5143,8 +4245,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5152,18 +4254,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2483 + content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"906b68379756bb9d4208af4c96dd653e4ce628a061d3d4a424273b27ef447aec"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wb68583"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-09-19T18:39:51Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:40:18.8642287Z","duration":"PT23.6519075S","correlationId":"52d37223567d2186b2d140a95853a28d","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-wb68583","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wb68583"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/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-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stmjvmirceqdbxc"},"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-wb68583"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wb68583/providers/Microsoft.Storage/storageAccounts/stmjvmirceqdbxc"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w3e3ab4","azd-provision-param-hash":"a937c3880274eaa5ca345d830b27a4c455597d3988fd971be58fee3a95f0b2a8"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w3e3ab4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T02:56:56Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T01:57:09.0627561Z","duration":"PT9.7021273S","correlationId":"c6f61c161563698758fb3e34d2664018","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-w3e3ab4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w3e3ab4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/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-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdzyt7z6dr2zdw"},"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-w3e3ab4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w3e3ab4/providers/Microsoft.Storage/storageAccounts/stdzyt7z6dr2zdw"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2483" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:15 GMT + - Tue, 15 Oct 2024 02:00:14 GMT Expires: - "-1" Pragma: @@ -5175,19 +4277,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 2bac7b80-f1ad-474d-b917-7016e7eba35d + - 3e27e24c-9ac2-4576-a838-9544c373947e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174315Z:2bac7b80-f1ad-474d-b917-7016e7eba35d + - WESTUS2:20241015T020015Z:3e27e24c-9ac2-4576-a838-9544c373947e X-Msedge-Ref: - - 'Ref A: FFE85A292DF74687AD1552E02FCB8610 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:15Z' + - 'Ref A: 05731983C6D64462A3C50A01BF121458 Ref B: CO6AA3150217019 Ref C: 2024-10-15T02:00:14Z' status: 200 OK code: 200 - duration: 396.9619ms - - id: 78 + duration: 365.728ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -5198,7 +4302,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-wb68583"}}' + 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-w3e3ab4"}}' form: {} headers: Accept: @@ -5214,8 +4318,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -5223,20 +4327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 569 + content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wb68583"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-09-19T17:43:18.496565Z","duration":"PT0.0001666S","correlationId":"2ca079ef3bf5a84fe21abca1d13e47de","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w3e3ab4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T02:00:17.6354195Z","duration":"PT0.0006205S","correlationId":"9ba804cf0f3e6005bff3cc3f9eb353ca","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748390884384114?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/operationStatuses/08584726492699004401?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "569" + - "570" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:18 GMT + - Tue, 15 Oct 2024 02:00:17 GMT Expires: - "-1" Pragma: @@ -5248,21 +4352,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca X-Ms-Deployment-Engine-Version: - - 1.109.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 541db89f-72aa-439d-b073-d9de46002f16 + - 02cfb598-e093-4d51-9960-b878cbf7d7c1 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174318Z:541db89f-72aa-439d-b073-d9de46002f16 + - WESTUS2:20241015T020018Z:02cfb598-e093-4d51-9960-b878cbf7d7c1 X-Msedge-Ref: - - 'Ref A: 68AF294941174A39AEF90D303255250B Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:15Z' + - 'Ref A: AC1BB76C006F495489C04E94F75B9559 Ref B: CO6AA3150217019 Ref C: 2024-10-15T02:00:15Z' status: 200 OK code: 200 - duration: 3.2121567s - - id: 79 + duration: 3.0832985s + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -5283,8 +4389,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316/operationStatuses/08584748390884384114?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058/operationStatuses/08584726492699004401?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5303,7 +4409,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:19 GMT + - Tue, 15 Oct 2024 02:00:47 GMT Expires: - "-1" Pragma: @@ -5315,19 +4421,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11990" + - "1099" X-Ms-Request-Id: - - a6d9432a-334a-4983-b371-e9183a0d836e + - 088e2922-00bb-43f1-b113-eaeff6a4b342 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174319Z:a6d9432a-334a-4983-b371-e9183a0d836e + - WESTUS2:20241015T020048Z:088e2922-00bb-43f1-b113-eaeff6a4b342 X-Msedge-Ref: - - 'Ref A: 1FA0ADA321014332B5E68F05787ABBB0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:18Z' + - 'Ref A: A9F2962E6B2945D2A8932508BC0F3988 Ref B: CO6AA3150217019 Ref C: 2024-10-15T02:00:48Z' status: 200 OK code: 200 - duration: 375.7876ms - - id: 80 + duration: 215.6188ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -5348,8 +4456,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316?api-version=2021-04-01 + - 9ba804cf0f3e6005bff3cc3f9eb353ca + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5359,7 +4467,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wb68583-1726767316","name":"azdtest-wb68583-1726767316","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wb68583"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-19T17:43:19.0528842Z","duration":"PT0.5564858S","correlationId":"2ca079ef3bf5a84fe21abca1d13e47de","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w3e3ab4-1728957058","name":"azdtest-w3e3ab4-1728957058","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w3e3ab4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:00:18.3286603Z","duration":"PT0.6938613S","correlationId":"9ba804cf0f3e6005bff3cc3f9eb353ca","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -5368,7 +4476,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:19 GMT + - Tue, 15 Oct 2024 02:00:48 GMT Expires: - "-1" Pragma: @@ -5380,19 +4488,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 9ba804cf0f3e6005bff3cc3f9eb353ca + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11992" + - "1099" X-Ms-Request-Id: - - 846f8331-4685-4538-bcc9-2240d1d88427 + - 8993461b-8477-4d7c-a0b7-9fae18b50741 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174319Z:846f8331-4685-4538-bcc9-2240d1d88427 + - WESTUS2:20241015T020048Z:8993461b-8477-4d7c-a0b7-9fae18b50741 X-Msedge-Ref: - - 'Ref A: F8F2C4E4E8C44A4C8BA8F08F7DEEDBA7 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:19Z' + - 'Ref A: 30F51F6B7BAC43A881E107867B03A995 Ref B: CO6AA3150217019 Ref C: 2024-10-15T02:00:48Z' status: 200 OK code: 200 - duration: 243.3621ms + duration: 371.6356ms --- -env_name: azdtest-wb68583 +env_name: azdtest-w3e3ab4 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1726767316" +time: "1728957058" 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 a2af04ffd4c..6e4f4d1b46c 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionStateWithDown.yaml @@ -22,9 +22,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -44,7 +44,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:19:57 GMT + - Tue, 15 Oct 2024 02:06:22 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 49cbab77-be83-43d2-9814-eb3449de5655 + - c9a08b86-ce28-49fe-bb28-fcdead757b6f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001957Z:49cbab77-be83-43d2-9814-eb3449de5655 + - WESTUS2:20241015T020622Z:c9a08b86-ce28-49fe-bb28-fcdead757b6f X-Msedge-Ref: - - 'Ref A: A92E72F61D0946BC88474B9F2DF20F8F Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:19:55Z' + - 'Ref A: 848D47B0EB12466DA1CA0A6CA9E1E663 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:19Z' status: 200 OK code: 200 - duration: 1.9400296s + duration: 3.4773396s - id: 1 request: proto: HTTP/1.1 @@ -89,9 +91,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -100,18 +102,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145188 + content_length: 2191922 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=1ZDBboMwDIafhZxbKSx0qnqDmkrVFrNA0ondqo4iCkqkjQpIxbsvtOsLdKcdLP3W%2f8v%2b7As5GN1W%2brxvK6OlqQv9TVYXEoeZVNmkdNG3b%2fuvtpoCL8VAVsT3lh7KvOc2n5PZNZGa7u75dOml9SbiUHZCfQBXIkCIohQaEHS34SqmKCMQcrdG%2bXlMfUxeM9oloFzuwBByVzFLZOg21CxZ%2b5hBvUigZGjNkDqPn8TkuTnbORlnv7hPD%2fIGf%2bZ1tzIOoY82tjhceQOnn3kterRbyiVfoC27ifU9%2flevveG61%2bpz09zp2a0dxx8%3d","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2145188" + - "2191922" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:04 GMT + - Tue, 15 Oct 2024 02:06:30 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7901757c-aed5-4451-babc-39afb5dce245 + - d95da231-c981-4a10-87e4-da68dfcb87ca X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002004Z:7901757c-aed5-4451-babc-39afb5dce245 + - WESTUS2:20241015T020630Z:d95da231-c981-4a10-87e4-da68dfcb87ca X-Msedge-Ref: - - 'Ref A: E0C4B4D7E208405AA8E005AD7D9116C6 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:19:57Z' + - 'Ref A: FF39AAD93AD44C09B11AAEC6D94DF07C Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:23Z' status: 200 OK code: 200 - duration: 7.0706195s + duration: 7.2950412s - id: 2 request: proto: HTTP/1.1 @@ -154,10 +158,144 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 738002 + 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=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "738002" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:06:34 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 1a455bc7-a4b6-4dbe-8762-dc7b11af1ce0 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020635Z:1a455bc7-a4b6-4dbe-8762-dc7b11af1ce0 + X-Msedge-Ref: + - 'Ref A: 23429FAD3EF24C91B8E4146BA13A5F0E Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:31Z' + status: 200 OK + code: 200 + duration: 4.0802303s + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 717738 + 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=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "717738" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:06: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: + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 553ca49e-bb33-4e31-b3de-b24b72930cf0 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020639Z:553ca49e-bb33-4e31-b3de-b24b72930cf0 + X-Msedge-Ref: + - 'Ref A: 12B7CE4BE75D47F0BE17C1F3D809E159 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:35Z' + status: 200 OK + code: 200 + duration: 4.4798739s + - id: 4 + 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZDBboMwDIafhZxbKSx0qnqDmkrVFrNA0ondqo4iCkqkjQpIxbsvtOsLdKcdLP3W%2f8v%2b7As5GN1W%2brxvK6OlqQv9TVYXEoeZVNmkdNG3b%2fuvtpoCL8VAVsT3lh7KvOc2n5PZNZGa7u75dOml9SbiUHZCfQBXIkCIohQaEHS34SqmKCMQcrdG%2bXlMfUxeM9oloFzuwBByVzFLZOg21CxZ%2b5hBvUigZGjNkDqPn8TkuTnbORlnv7hPD%2fIGf%2bZ1tzIOoY82tjhceQOnn3kterRbyiVfoC27ifU9%2flevveG61%2bpz09zp2a0dxx8%3d + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -165,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:06 GMT + - Tue, 15 Oct 2024 02:06:42 GMT Expires: - "-1" Pragma: @@ -188,19 +326,94 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 84cd4b37-16b8-412d-ba72-e273e337094c + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020642Z:84cd4b37-16b8-412d-ba72-e273e337094c + X-Msedge-Ref: + - 'Ref A: 9EFC4D5C395D4038B287BD5CE3A5F8E9 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:39Z' + status: 200 OK + code: 200 + duration: 2.7953088s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4683 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wcc8011"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4683" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1959 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:06:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"a5f6ece08190ec807c23c99885c758bd","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1959" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:06:44 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: + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - fe6049e7-dba3-4465-b2f5-f8e31461ccfa + - 5e7fd199-2826-4b94-a6c3-61211e3b3735 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002006Z:fe6049e7-dba3-4465-b2f5-f8e31461ccfa + - WESTUS2:20241015T020645Z:5e7fd199-2826-4b94-a6c3-61211e3b3735 X-Msedge-Ref: - - 'Ref A: DFB295F4DDAA4D96AFA7A3A5E85C3A88 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:20:04Z' + - 'Ref A: FFE79095120643E5BB512A7751652689 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:42Z' status: 200 OK code: 200 - duration: 2.0042263s - - id: 3 + duration: 2.6289017s + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -211,7 +424,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w4e3a08"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wcc8011"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"}}' form: {} headers: Accept: @@ -225,10 +438,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -236,20 +449,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1553 + content_length: 1554 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:20:09.1490625Z","duration":"PT0.000084S","correlationId":"c411042019241b5313fd2fb11f022180","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:06:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T02:06:47.5582127Z","duration":"PT0.0009511S","correlationId":"a5f6ece08190ec807c23c99885c758bd","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-w4e3a08-1724372388/operationStatuses/08584772344782630273?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726488796548034?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1553" + - "1554" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:09 GMT + - Tue, 15 Oct 2024 02:06:47 GMT Expires: - "-1" Pragma: @@ -261,21 +474,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - ef88980e-cdee-44d1-ac07-68598f91993e + - c9e63c9b-b53a-4a56-a2d7-42b58bb416c8 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002009Z:ef88980e-cdee-44d1-ac07-68598f91993e + - WESTUS2:20241015T020648Z:c9e63c9b-b53a-4a56-a2d7-42b58bb416c8 X-Msedge-Ref: - - 'Ref A: 501B1DDB52F04482970751EEC3796175 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:20:06Z' + - 'Ref A: 2CF64476946848C7A33AB80226E56242 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:06:45Z' status: 201 Created code: 201 - duration: 2.8298497s - - id: 4 + duration: 2.7406449s + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -294,10 +509,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772344782630273?api-version=2021-04-01 + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726488796548034?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -316,7 +531,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:10 GMT + - Tue, 15 Oct 2024 02:07:48 GMT Expires: - "-1" Pragma: @@ -328,19 +543,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - cc5f9652-5c04-45ab-900d-038db2f3eb35 + - c9b70c8c-2164-480c-b8f2-6281b3f10d01 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002110Z:cc5f9652-5c04-45ab-900d-038db2f3eb35 + - WESTUS2:20241015T020749Z:c9b70c8c-2164-480c-b8f2-6281b3f10d01 X-Msedge-Ref: - - 'Ref A: 8276DAD1ED704070812FE5B2B9C9A278 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:10Z' + - 'Ref A: B688C9FC46664DE88B6DF7178D6613B6 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:07:48Z' status: 200 OK code: 200 - duration: 246.8555ms - - id: 5 + duration: 385.894ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -359,10 +576,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -372,7 +589,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:20:42.6173641Z","duration":"PT33.4683856S","correlationId":"c411042019241b5313fd2fb11f022180","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:06:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:07:25.6454437Z","duration":"PT38.0881821S","correlationId":"a5f6ece08190ec807c23c99885c758bd","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: Cache-Control: - no-cache @@ -381,7 +598,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:10 GMT + - Tue, 15 Oct 2024 02:07:48 GMT Expires: - "-1" Pragma: @@ -393,19 +610,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6cf3fb47-5556-4c77-b3a1-9971189efc3c + - 52eda60e-7398-4396-b965-0f685d617425 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002110Z:6cf3fb47-5556-4c77-b3a1-9971189efc3c + - WESTUS2:20241015T020749Z:52eda60e-7398-4396-b965-0f685d617425 X-Msedge-Ref: - - 'Ref A: 030A456024E243ACA6FE7E87E18B5ACD Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:10Z' + - 'Ref A: 5B6C6F683E7C47C7AED292C438117B31 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:07:49Z' status: 200 OK code: 200 - duration: 414.2904ms - - id: 6 + duration: 380.7666ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -426,10 +645,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e3a08%27&api-version=2021-04-01 + - a5f6ece08190ec807c23c99885c758bd + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc8011%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -439,7 +658,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","name":"rg-azdtest-w4e3a08","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","DeleteAfter":"2024-08-23T01:20:07Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","name":"rg-azdtest-wcc8011","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","DeleteAfter":"2024-10-15T03:06:45Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -448,7 +667,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:10 GMT + - Tue, 15 Oct 2024 02:07:49 GMT Expires: - "-1" Pragma: @@ -460,19 +679,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - a5f6ece08190ec807c23c99885c758bd + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 669eab8e-727b-410c-b95b-926cea7c6694 + - 4531eeae-b143-44be-a6df-dcb425220876 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002111Z:669eab8e-727b-410c-b95b-926cea7c6694 + - WESTUS2:20241015T020749Z:4531eeae-b143-44be-a6df-dcb425220876 X-Msedge-Ref: - - 'Ref A: 2E8A2A23A5914DA0A7192ACB3997898F Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: 7758127CED254DE1BFA6AF84D1DC070D Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:07:49Z' status: 200 OK code: 200 - duration: 68.5938ms - - id: 7 + duration: 110.9151ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -493,9 +714,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 87b732a2c976c78396aa73866b0fa96c url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -515,7 +736,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:15 GMT + - Tue, 15 Oct 2024 02:07:56 GMT Expires: - "-1" Pragma: @@ -527,19 +748,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 87b732a2c976c78396aa73866b0fa96c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 61cc83c6-15d5-4977-885a-e68307cf3058 + - 18b27178-f949-4452-b031-cdb89b2592e3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002115Z:61cc83c6-15d5-4977-885a-e68307cf3058 + - WESTUS2:20241015T020756Z:18b27178-f949-4452-b031-cdb89b2592e3 X-Msedge-Ref: - - 'Ref A: 92A1A1CA44FB4A9B9A10E5019EFAD658 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:13Z' + - 'Ref A: F1A2972D0F5A4F5DAF02315C39AF693E Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:07:53Z' status: 200 OK code: 200 - duration: 1.721733s - - id: 8 + duration: 2.884391s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -560,9 +783,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 87b732a2c976c78396aa73866b0fa96c url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -571,18 +794,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + content_length: 2194404 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=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","location":"eastus2","name":"azdtest-w4e3a08-1724372388","properties":{"correlationId":"c411042019241b5313fd2fb11f022180","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","resourceName":"rg-azdtest-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT33.4683856S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}],"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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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":"2024-08-23T01:20:07Z"},"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-08-23T00:20:42.6173641Z"},"tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","location":"eastus2","name":"azdtest-wcc8011-1728957958","properties":{"correlationId":"a5f6ece08190ec807c23c99885c758bd","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","resourceName":"rg-azdtest-wcc8011","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT38.0881821S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}],"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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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":"2024-10-15T03:06:45Z"},"environmentName":{"type":"String","value":"azdtest-wcc8011"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T02:07:25.6454437Z"},"tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "2194404" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:22 GMT + - Tue, 15 Oct 2024 02:08:03 GMT Expires: - "-1" Pragma: @@ -594,19 +817,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 87b732a2c976c78396aa73866b0fa96c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1100" X-Ms-Request-Id: - - 0f9c8e72-8b3f-455a-ab38-242a69b1ddbe + - ba99e36b-528a-496b-9825-4a126ea694bc X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002122Z:0f9c8e72-8b3f-455a-ab38-242a69b1ddbe + - WESTUS2:20241015T020804Z:ba99e36b-528a-496b-9825-4a126ea694bc X-Msedge-Ref: - - 'Ref A: 50BB440615164E8B8BF9BF9DF990E198 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:15Z' + - 'Ref A: 70CA041B46E94D49A78F17881A4A605A Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:07:56Z' status: 200 OK code: 200 - duration: 7.0950691s - - id: 9 + duration: 7.2382407s + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -625,10 +850,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d + - 87b732a2c976c78396aa73866b0fa96c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B method: GET response: proto: HTTP/2.0 @@ -636,18 +861,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 738002 uncompressed: false - body: '{"value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "738002" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Tue, 15 Oct 2024 02:08:08 GMT Expires: - "-1" Pragma: @@ -659,66 +884,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 87b732a2c976c78396aa73866b0fa96c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - c96dd1ad-5439-49b5-8650-05029a36a83c + - 44f57e4b-68d2-4c6b-bea6-523a37053896 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:c96dd1ad-5439-49b5-8650-05029a36a83c + - WESTUS2:20241015T020808Z:44f57e4b-68d2-4c6b-bea6-523a37053896 X-Msedge-Ref: - - 'Ref A: BD1DE156FC724D24937E97A12CEEF973 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:22Z' + - 'Ref A: 8C75084A03B542FE8FACEADAA5DE890E Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:04Z' status: 200 OK code: 200 - duration: 1.9986489s - - id: 10 + duration: 4.4882028s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4299 + 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4299" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 - url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 - method: POST + - 87b732a2c976c78396aa73866b0fa96c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4787 + content_length: 717738 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "717738" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Tue, 15 Oct 2024 02:08:12 GMT Expires: - "-1" Pragma: @@ -730,19 +951,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - 87b732a2c976c78396aa73866b0fa96c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 9d9cff33-4143-4e18-b7ef-5c7574eb6364 + - 2783c8a1-4388-40d8-98d2-0ec5e5cc1673 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:9d9cff33-4143-4e18-b7ef-5c7574eb6364 + - WESTUS2:20241015T020813Z:2783c8a1-4388-40d8-98d2-0ec5e5cc1673 X-Msedge-Ref: - - 'Ref A: 2D3367C24A4046469D17D72002D57BCE Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:24Z' + - 'Ref A: 21798B76E51A4919A8D7BDA015875CCA Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:09Z' status: 200 OK code: 200 - duration: 48.0328ms - - id: 11 + duration: 4.0369113s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -756,17 +979,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 87b732a2c976c78396aa73866b0fa96c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -774,18 +995,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + content_length: 262264 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=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","location":"eastus2","name":"azdtest-w4e3a08-1724372388","properties":{"correlationId":"c411042019241b5313fd2fb11f022180","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","resourceName":"rg-azdtest-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT33.4683856S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}],"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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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":"2024-08-23T01:20:07Z"},"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-08-23T00:20:42.6173641Z"},"tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:33 GMT + - Tue, 15 Oct 2024 02:08:15 GMT Expires: - "-1" Pragma: @@ -797,60 +1018,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 87b732a2c976c78396aa73866b0fa96c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 401e254c-16b6-4cf6-b031-2bf013c85c6d + - 7693ca3e-aaba-4cbd-80ca-95888c13e253 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002133Z:401e254c-16b6-4cf6-b031-2bf013c85c6d + - WESTUS2:20241015T020816Z:7693ca3e-aaba-4cbd-80ca-95888c13e253 X-Msedge-Ref: - - 'Ref A: 65C9465D4F4C41529D10FB99FB4D9D7A Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:27Z' + - 'Ref A: 135322426FB34810BD28AFF7904BAFAB Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:13Z' status: 200 OK code: 200 - duration: 6.6584482s - - id: 12 + duration: 2.9821748s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4299 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4299" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d - method: GET + - 87b732a2c976c78396aa73866b0fa96c + 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: 322363 + content_length: 4787 uncompressed: false - body: '{"value":[]}' + 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:34 GMT + - Tue, 15 Oct 2024 02:08:16 GMT Expires: - "-1" Pragma: @@ -862,19 +1091,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - 87b732a2c976c78396aa73866b0fa96c + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 90d2762e-8332-4477-accb-bb7ca74315ae + - 0447e525-837f-4019-8571-0667828ac18f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:90d2762e-8332-4477-accb-bb7ca74315ae + - WESTUS:20241015T020816Z:0447e525-837f-4019-8571-0667828ac18f X-Msedge-Ref: - - 'Ref A: 7CBF3B4205EB4564B1E6CDB435AD9FFB Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:33Z' + - 'Ref A: 1AF3289E63894777AE5B6D0329712DCC Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:16Z' status: 200 OK code: 200 - duration: 1.7002535s - - id: 13 + duration: 331.0964ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -895,10 +1124,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -906,18 +1135,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 2194405 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:20:42.6173641Z","duration":"PT33.4683856S","correlationId":"c411042019241b5313fd2fb11f022180","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","location":"eastus2","name":"azdtest-wcc8011-1728957958","properties":{"correlationId":"a5f6ece08190ec807c23c99885c758bd","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","resourceName":"rg-azdtest-wcc8011","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT38.0881821S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}],"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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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":"2024-10-15T03:06:45Z"},"environmentName":{"type":"String","value":"azdtest-wcc8011"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T02:07:25.6454437Z"},"tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "2194405" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Tue, 15 Oct 2024 02:08:26 GMT Expires: - "-1" Pragma: @@ -929,19 +1158,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - febb0223-f462-42a1-a9bc-41e7775b4348 + - f449a427-d711-4ad9-9536-cc11c2a32fc0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:febb0223-f462-42a1-a9bc-41e7775b4348 + - WESTUS2:20241015T020826Z:f449a427-d711-4ad9-9536-cc11c2a32fc0 X-Msedge-Ref: - - 'Ref A: 80B9881A0C8840ACB200D9FD99BA05A5 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: 236749AA094645C785408987C62A33D8 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:20Z' status: 200 OK code: 200 - duration: 271.8012ms - - id: 14 + duration: 6.6331276s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -955,17 +1186,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e3a08%27&api-version=2021-04-01 + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B method: GET response: proto: HTTP/2.0 @@ -973,18 +1202,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 738002 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","name":"rg-azdtest-w4e3a08","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","DeleteAfter":"2024-08-23T01:20:07Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "738002" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Tue, 15 Oct 2024 02:08:31 GMT Expires: - "-1" Pragma: @@ -996,19 +1225,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6ccbcf60-7f39-4ef3-9fe4-fe4743ae6e1d + - 7444349d-a4f0-4131-8f9e-b13f06d13ddb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:6ccbcf60-7f39-4ef3-9fe4-fe4743ae6e1d + - WESTUS2:20241015T020832Z:7444349d-a4f0-4131-8f9e-b13f06d13ddb X-Msedge-Ref: - - 'Ref A: F519186E9405430E824379FE861C07BE Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: FBB708CF249442479B5FC7C49711E12D Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:27Z' status: 200 OK code: 200 - duration: 58.9299ms - - id: 15 + duration: 4.8875127s + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1022,17 +1253,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/resources?api-version=2021-04-01 + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB method: GET response: proto: HTTP/2.0 @@ -1040,18 +1269,635 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 717738 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq","name":"stre7a272ymuxmq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "717738" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a868eccc-b157-4885-acc8-9635f1af14c4 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020837Z:a868eccc-b157-4885-acc8-9635f1af14c4 + X-Msedge-Ref: + - 'Ref A: 5B6E1F136440499796A00EEA3ED52436 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:32Z' + status: 200 OK + code: 200 + duration: 4.8822356s + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 262264 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "262264" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 39671b60-db04-4976-8bc8-62604af53d3f + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020839Z:39671b60-db04-4976-8bc8-62604af53d3f + X-Msedge-Ref: + - 'Ref A: 82B0E49EB64B4BEA9B20C354B74935EB Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:37Z' + status: 200 OK + code: 200 + duration: 1.9400855s + - id: 20 + 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.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2482 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:06:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:07:25.6454437Z","duration":"PT38.0881821S","correlationId":"a5f6ece08190ec807c23c99885c758bd","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2482" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b7d2f42b-ebc3-496d-8bda-353a1572fc6b + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020839Z:b7d2f42b-ebc3-496d-8bda-353a1572fc6b + X-Msedge-Ref: + - 'Ref A: 4409340F71DC42F28FC9E203088735CC Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:39Z' + status: 200 OK + code: 200 + duration: 262.1017ms + - 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.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc8011%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 396 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","name":"rg-azdtest-wcc8011","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","DeleteAfter":"2024-10-15T03:06:45Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "396" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a9bc27d9-3d33-4c73-9110-39b356a8b605 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020839Z:a9bc27d9-3d33-4c73-9110-39b356a8b605 + X-Msedge-Ref: + - 'Ref A: C0D89284B9C6465F8ED6FCDA7332FF30 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:39Z' + status: 200 OK + code: 200 + duration: 69.3118ms + - 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.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg","name":"sty7a6txjorpubg","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ce888bfa-e666-4bcf-9014-158499d82f26 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020839Z:ce888bfa-e666-4bcf-9014-158499d82f26 + X-Msedge-Ref: + - 'Ref A: 7586B4A3B7E3455AA3964B61B88A43DE Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:39Z' + status: 200 OK + code: 200 + duration: 219.5056ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2482 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:06:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:07:25.6454437Z","duration":"PT38.0881821S","correlationId":"a5f6ece08190ec807c23c99885c758bd","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2482" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 33015d2d-abb4-4921-ac66-8011f06775ad + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020840Z:33015d2d-abb4-4921-ac66-8011f06775ad + X-Msedge-Ref: + - 'Ref A: 95FA62E70D504B29A4AB3169168A7AF7 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:40Z' + status: 200 OK + code: 200 + duration: 273.2945ms + - 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.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc8011%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 396 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","name":"rg-azdtest-wcc8011","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","DeleteAfter":"2024-10-15T03:06:45Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "396" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 40e7db88-d35d-4f9e-be5f-6a7a6eaf10f0 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020840Z:40e7db88-d35d-4f9e-be5f-6a7a6eaf10f0 + X-Msedge-Ref: + - 'Ref A: CBC1EAE8CEB6484BA7C911FA4FCC5254 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:40Z' + status: 200 OK + code: 200 + duration: 49.649ms + - 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.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg","name":"sty7a6txjorpubg","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 15 Oct 2024 02:08: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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 431f3237-730f-4610-a925-133027eaf755 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020840Z:431f3237-730f-4610-a925-133027eaf755 + X-Msedge-Ref: + - 'Ref A: 8F6A27D0667D444C86A04AD0781C2625 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:40Z' + status: 200 OK + code: 200 + duration: 183.4913ms + - 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.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wcc8011?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: + - Tue, 15 Oct 2024 02:08:41 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQ0M4MDExLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645550456678276&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=6dBgavp8jXUkVDGAEu86u6IbpHKqWLkuXIPzkBG3DtV8LgLIeURho-WcAR3dNTuEfzmXfEK7A7cbg9CH50yd99wAZPDb9QQuvKu-AVBIFmZqI4FHy5VEH-y-hPFIQ9tdEhXht0IqzuAAT7EAsv04BetJkoUPrHh7ESUa2Z_RH4fOnjyr_kdo_7bz-5RjKGLu258YIiwJyjWo6qGZm4ARy_biK81CumIQf_WaIdcWMOHklglSAYeaKf50hA4eu-gDMlS_WNIPiECjf0bc71IogDsamD5GcPR1wc3HkBqqYGEnb6nGY2r01zCEhc3PoNJwVu39uRvNskmgmq2Tf2fouQ&h=1EsGvdCFt4YsLSjJXGR3gVXlpDj2cuNs8ZtjBRwH82Y + 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: + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - 674931ca-7ad1-4224-ba97-8638763a2f19 + X-Ms-Routing-Request-Id: + - WESTUS2:20241015T020842Z:674931ca-7ad1-4224-ba97-8638763a2f19 + X-Msedge-Ref: + - 'Ref A: 346EE682343A4F119EE149A7D16B0241 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:08:40Z' + status: 202 Accepted + code: 202 + duration: 1.6110177s + - 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-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQ0M4MDExLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645550456678276&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=6dBgavp8jXUkVDGAEu86u6IbpHKqWLkuXIPzkBG3DtV8LgLIeURho-WcAR3dNTuEfzmXfEK7A7cbg9CH50yd99wAZPDb9QQuvKu-AVBIFmZqI4FHy5VEH-y-hPFIQ9tdEhXht0IqzuAAT7EAsv04BetJkoUPrHh7ESUa2Z_RH4fOnjyr_kdo_7bz-5RjKGLu258YIiwJyjWo6qGZm4ARy_biK81CumIQf_WaIdcWMOHklglSAYeaKf50hA4eu-gDMlS_WNIPiECjf0bc71IogDsamD5GcPR1wc3HkBqqYGEnb6nGY2r01zCEhc3PoNJwVu39uRvNskmgmq2Tf2fouQ&h=1EsGvdCFt4YsLSjJXGR3gVXlpDj2cuNs8ZtjBRwH82Y + 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 Oct 2024 02:11:00 GMT Expires: - "-1" Pragma: @@ -1063,19 +1909,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 99e1a355-c505-4f9e-85e5-32723cf4093c + - 3f2b6921-1253-4062-a9e4-5c8bccba609e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:99e1a355-c505-4f9e-85e5-32723cf4093c + - WESTUS2:20241015T021100Z:3f2b6921-1253-4062-a9e4-5c8bccba609e X-Msedge-Ref: - - 'Ref A: 099749266E6E45BAB88638E60EBD7BA7 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: 1DD2C58E79D1465695EE4AA643FC849B Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:00Z' status: 200 OK code: 200 - duration: 583.1059ms - - id: 16 + duration: 215.2519ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1096,10 +1944,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1109,7 +1957,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:20:42.6173641Z","duration":"PT33.4683856S","correlationId":"c411042019241b5313fd2fb11f022180","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:06:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:07:25.6454437Z","duration":"PT38.0881821S","correlationId":"a5f6ece08190ec807c23c99885c758bd","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: Cache-Control: - no-cache @@ -1118,7 +1966,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:36 GMT + - Tue, 15 Oct 2024 02:11:00 GMT Expires: - "-1" Pragma: @@ -1130,30 +1978,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - c21ea1f7-00b2-451e-9287-2df5574223f4 + - 90229a74-2592-47ef-96a9-0b01211614ce X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:c21ea1f7-00b2-451e-9287-2df5574223f4 + - WESTUS2:20241015T021101Z:90229a74-2592-47ef-96a9-0b01211614ce X-Msedge-Ref: - - 'Ref A: C4C2FE1A6E4B471AB5577E6C70959415 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:36Z' + - 'Ref A: 57B457269A3F42F889646032A5362AF2 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:00Z' status: 200 OK code: 200 - duration: 356.8639ms - - id: 17 + duration: 226.1148ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 346 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + 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-wcc8011"}}' form: {} headers: Accept: @@ -1162,30 +2012,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "346" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e3a08%27&api-version=2021-04-01 - method: GET + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 570 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","name":"rg-azdtest-w4e3a08","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","DeleteAfter":"2024-08-23T01:20:07Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc8011"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T02:11:04.1799079Z","duration":"PT0.0003667S","correlationId":"3a553d3dbaa8cf7c8a75a8775319e710","providers":[],"dependencies":[]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726486235565015?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "396" + - "570" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:36 GMT + - Tue, 15 Oct 2024 02:11:04 GMT Expires: - "-1" Pragma: @@ -1197,19 +2053,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Deployment-Engine-Version: + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - c01fd638-63a5-43cc-a6e9-cf20efa49374 + - 7d8541ae-2ea1-4ace-9b8a-3cb681a4c784 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:c01fd638-63a5-43cc-a6e9-cf20efa49374 + - WESTUS2:20241015T021104Z:7d8541ae-2ea1-4ace-9b8a-3cb681a4c784 X-Msedge-Ref: - - 'Ref A: 01C659CAC93745859BEB365C9EE51428 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:36Z' + - 'Ref A: 5F2FCDC72FCB4690BFE1DFA9CB1CDA86 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:01Z' status: 200 OK code: 200 - duration: 60.4304ms - - id: 18 + duration: 3.6068774s + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1223,17 +2083,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/resources?api-version=2021-04-01 + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726486235565015?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1241,18 +2099,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 22 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq","name":"stre7a272ymuxmq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08"}}]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:37 GMT + - Tue, 15 Oct 2024 02:11:34 GMT Expires: - "-1" Pragma: @@ -1264,19 +2122,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 28b1f8c9-3200-48bc-ae94-c690a6845d68 + - 8dae9381-fb5d-4ab9-8e6d-11625ca69904 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002137Z:28b1f8c9-3200-48bc-ae94-c690a6845d68 + - WESTUS2:20241015T021135Z:8dae9381-fb5d-4ab9-8e6d-11625ca69904 X-Msedge-Ref: - - 'Ref A: 1009D9BC95854C67ABB17860FFEA0B70 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:37Z' + - 'Ref A: A4CDF722E30B405A8E150853EDCE130C Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:35Z' status: 200 OK code: 200 - duration: 568.4032ms - - id: 19 + duration: 366.2713ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1290,42 +2150,38 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w4e3a08?api-version=2021-04-01 - method: DELETE + - 3a553d3dbaa8cf7c8a75a8775319e710 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?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: 605 uncompressed: false - body: "" + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc8011"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:11:05.4393464Z","duration":"PT1.2598052S","correlationId":"3a553d3dbaa8cf7c8a75a8775319e710","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "605" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:38 GMT + - Tue, 15 Oct 2024 02:11:35 GMT Expires: - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNEUzQTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599693610084185&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=DG8W6wXHALboJwzgdPtRFzHqoj4sso2J_U-GLhwm-HXL6l9SfNOwW6m2rhvZ6jfnwKtALQq80pYJM6JUjkMoirmNFaIkySMuuXSt0MWx8kgqcWHEdyCb3DNRdm4fSmEPlfzAvBu2XoKAUzQyNo03r6fxNrY-hdNNhJT2o8ftQesIWb7r69ve3Li2ewKX8jXLpkaBepaCmJh_D_0X-TBW6gb9ZTcdCXJcpzQsrQWl8FlDD2t14hT3KJ8cCMyFgyRI2iw5zhX7pLJnSpltRByYjNZwDj0Q1Qln9hmQwLzWol1AKhXZjVg1tRnf1C8a1ARDYdWEM7OodQJ_r5nJVAFMtQ&h=M0CAvjS5KzSU-ZqdboIspKKROwHmK9c-5c4dy6mYzi8 Pragma: - no-cache - Retry-After: - - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -1333,19 +2189,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14998" + - 3a553d3dbaa8cf7c8a75a8775319e710 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - b8f9fc3b-b7b5-40a7-808e-6126cb21fe5a + - e76e8fdc-b0ee-49d4-9fbd-15020489888d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002139Z:b8f9fc3b-b7b5-40a7-808e-6126cb21fe5a + - WESTUS2:20241015T021135Z:e76e8fdc-b0ee-49d4-9fbd-15020489888d X-Msedge-Ref: - - 'Ref A: FC5F7A0E8E084ABD8B937912378DF1FF Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:37Z' - status: 202 Accepted - code: 202 - duration: 1.771601s - - id: 20 + - 'Ref A: DB0C032C46784EADA228C713FD6E25B1 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:35Z' + status: 200 OK + code: 200 + duration: 355.8263ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1359,15 +2217,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNEUzQTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599693610084185&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=DG8W6wXHALboJwzgdPtRFzHqoj4sso2J_U-GLhwm-HXL6l9SfNOwW6m2rhvZ6jfnwKtALQq80pYJM6JUjkMoirmNFaIkySMuuXSt0MWx8kgqcWHEdyCb3DNRdm4fSmEPlfzAvBu2XoKAUzQyNo03r6fxNrY-hdNNhJT2o8ftQesIWb7r69ve3Li2ewKX8jXLpkaBepaCmJh_D_0X-TBW6gb9ZTcdCXJcpzQsrQWl8FlDD2t14hT3KJ8cCMyFgyRI2iw5zhX7pLJnSpltRByYjNZwDj0Q1Qln9hmQwLzWol1AKhXZjVg1tRnf1C8a1ARDYdWEM7OodQJ_r5nJVAFMtQ&h=M0CAvjS5KzSU-ZqdboIspKKROwHmK9c-5c4dy6mYzi8 + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: proto: HTTP/2.0 @@ -1375,16 +2235,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 35367 uncompressed: false - body: "" + 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/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"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "35367" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:55 GMT + - Tue, 15 Oct 2024 02:11:41 GMT Expires: - "-1" Pragma: @@ -1396,19 +2258,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b0825a2a-063b-4bd0-bc3b-62f2bc0ebc0e + - 8af52bea-9ce4-4eed-87b5-01a10da783ed X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002256Z:b0825a2a-063b-4bd0-bc3b-62f2bc0ebc0e + - WESTUS2:20241015T021142Z:8af52bea-9ce4-4eed-87b5-01a10da783ed X-Msedge-Ref: - - 'Ref A: DE0A11B2E13F4264B9289E8A61711C78 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:22:56Z' + - 'Ref A: 372C94ECE1954F7AAED5787E806329AC Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:39Z' status: 200 OK code: 200 - duration: 200.9496ms - - id: 21 + duration: 3.0990632s + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1429,10 +2293,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1440,18 +2304,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 2192965 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:07Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:20:42.6173641Z","duration":"PT33.4683856S","correlationId":"c411042019241b5313fd2fb11f022180","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","location":"eastus2","name":"azdtest-wcc8011-1728957958","properties":{"correlationId":"3a553d3dbaa8cf7c8a75a8775319e710","dependencies":[],"duration":"PT1.2598052S","mode":"Incremental","outputResources":[],"outputs":{},"parameters":{},"providers":[],"provisioningState":"Succeeded","templateHash":"14737569621737367585","timestamp":"2024-10-15T02:11:05.4393464Z"},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc8011"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "2192965" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:56 GMT + - Tue, 15 Oct 2024 02:11:48 GMT Expires: - "-1" Pragma: @@ -1463,68 +2327,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - bd7ab205-78bc-47a8-9b23-4f3b1654c3b8 + - ead97aa9-79e1-4d8b-a681-ca85fccfb25d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002256Z:bd7ab205-78bc-47a8-9b23-4f3b1654c3b8 + - WESTUS2:20241015T021149Z:ead97aa9-79e1-4d8b-a681-ca85fccfb25d X-Msedge-Ref: - - 'Ref A: 0450B48499784D80B189C6D66F8E3CA8 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:22:56Z' + - 'Ref A: CC165B43DB004885A1DE3653A47742CF Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:42Z' status: 200 OK code: 200 - duration: 396.347ms - - id: 22 + duration: 6.6551806s + - id: 34 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-w4e3a08"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "346" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 - method: PUT + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 738002 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e3a08"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:22:59.5601806Z","duration":"PT0.0003255S","correlationId":"222e2a0a5820a1f3dd163aa5dde6394d","providers":[],"dependencies":[]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772343076926522?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "570" + - "738002" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:59 GMT + - Tue, 15 Oct 2024 02:11:54 GMT Expires: - "-1" Pragma: @@ -1536,21 +2394,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 9fd158c9-db6f-4245-ad30-2d1d84e9f9b1 + - 9f488fa8-767b-48ca-a1bb-b9c697f9da7e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002300Z:9fd158c9-db6f-4245-ad30-2d1d84e9f9b1 + - WESTUS2:20241015T021154Z:9f488fa8-767b-48ca-a1bb-b9c697f9da7e X-Msedge-Ref: - - 'Ref A: D2C5EEC1FA6D42578575118D1A622246 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:22:56Z' + - 'Ref A: 54E1363DEF14465992FEBC4509309FF0 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:49Z' status: 200 OK code: 200 - duration: 3.3612061s - - id: 23 + duration: 5.2439342s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1569,10 +2427,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772343076926522?api-version=2021-04-01 + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB method: GET response: proto: HTTP/2.0 @@ -1580,18 +2438,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 717738 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "717738" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:30 GMT + - Tue, 15 Oct 2024 02:11:58 GMT Expires: - "-1" Pragma: @@ -1603,19 +2461,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 61465e0e-2a67-4968-9e35-89e6cf583668 + - 41c8cbad-8ce5-4b1f-b499-1d898769ae93 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002330Z:61465e0e-2a67-4968-9e35-89e6cf583668 + - WESTUS2:20241015T021158Z:41c8cbad-8ce5-4b1f-b499-1d898769ae93 X-Msedge-Ref: - - 'Ref A: 56D76B46B2BC40CD9194234FD502ABFD Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:30Z' + - 'Ref A: 729801C7710F42C8A313E85E312E77D5 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:55Z' status: 200 OK code: 200 - duration: 376.3954ms - - id: 24 + duration: 3.6271184s + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1634,10 +2494,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1645,18 +2505,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 262264 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e3a08"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:23:00.239709Z","duration":"PT0.6798539S","correlationId":"222e2a0a5820a1f3dd163aa5dde6394d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:30 GMT + - Tue, 15 Oct 2024 02:12:00 GMT Expires: - "-1" Pragma: @@ -1668,30 +2528,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - c7eeaf15-dfc9-4200-aaea-eeedabf3d8d6 + - 03a758bf-8fe3-4ae7-a81d-a868fe48fbeb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002330Z:c7eeaf15-dfc9-4200-aaea-eeedabf3d8d6 + - WESTUS2:20241015T021201Z:03a758bf-8fe3-4ae7-a81d-a868fe48fbeb X-Msedge-Ref: - - 'Ref A: A261C2E64B854D8D9D47B4208AE26FAA Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:30Z' + - 'Ref A: 24F370FEF21641F98D3ED76580969C1A Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:11:58Z' status: 200 OK code: 200 - duration: 373.1594ms - - id: 25 + duration: 2.7895375s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4299 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' form: {} headers: Accept: @@ -1700,30 +2562,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4299" + Content-Type: + - application/json User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 - method: GET + - d0ce68da863a68367c2ecf7673d7ade9 + 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: 35367 + content_length: 4787 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/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: '{"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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:35 GMT + - Tue, 15 Oct 2024 02:12:01 GMT Expires: - "-1" Pragma: @@ -1735,30 +2601,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 3e91db70-030f-41be-9fc4-d68332c87342 + - 9d9553ba-4ce0-496c-a9e1-cd3e86c94251 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002335Z:3e91db70-030f-41be-9fc4-d68332c87342 + - WESTUS:20241015T021201Z:9d9553ba-4ce0-496c-a9e1-cd3e86c94251 X-Msedge-Ref: - - 'Ref A: 9A21845B67F14ADB8A207426EF5FC39B Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:33Z' + - 'Ref A: 6A057AF6B31A43BA81A14F3D843A0121 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:12:01Z' status: 200 OK code: 200 - duration: 2.2831288s - - id: 26 + duration: 134.154ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4683 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wcc8011"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"}}' form: {} headers: Accept: @@ -1767,30 +2633,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4683" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 - method: GET + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151508 + content_length: 1959 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=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","location":"eastus2","name":"azdtest-w4e3a08-1724372388","properties":{"correlationId":"222e2a0a5820a1f3dd163aa5dde6394d","dependencies":[],"duration":"PT0.6798539S","mode":"Incremental","outputResources":[],"outputs":{},"parameters":{},"providers":[],"provisioningState":"Succeeded","templateHash":"14737569621737367585","timestamp":"2024-08-23T00:23:00.239709Z"},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e3a08"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:12:02Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"d0ce68da863a68367c2ecf7673d7ade9","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2151508" + - "1959" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:42 GMT + - Tue, 15 Oct 2024 02:12:03 GMT Expires: - "-1" Pragma: @@ -1802,60 +2672,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Ratelimit-Remaining-Subscription-Reads: + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 33018a2d-7376-4818-b6ee-5db2f647baa0 + - 3e9be1dd-36e2-4aae-a0fd-7993a99be4a6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002342Z:33018a2d-7376-4818-b6ee-5db2f647baa0 + - WESTUS2:20241015T021204Z:3e9be1dd-36e2-4aae-a0fd-7993a99be4a6 X-Msedge-Ref: - - 'Ref A: 751771D165E247BE9C48709DD2A15E18 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:35Z' + - 'Ref A: 357D46D7D9CF4043A2894F1A20FD49E5 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:12:01Z' status: 200 OK code: 200 - duration: 6.9810721s - - id: 27 + duration: 2.1752552s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4683 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-wcc8011"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + Content-Length: + - "4683" + Content-Type: + - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d - method: GET + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 1554 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:12:04Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T02:12:07.4534245Z","duration":"PT0.0001019S","correlationId":"d0ce68da863a68367c2ecf7673d7ade9","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011-1728957958/operationStatuses/08584726485607866194?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "322363" + - "1554" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:44 GMT + - Tue, 15 Oct 2024 02:12:07 GMT Expires: - "-1" Pragma: @@ -1867,66 +2747,64 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Ratelimit-Remaining-Subscription-Reads: + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Deployment-Engine-Version: + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - a32e21e0-d2c7-4b37-8d0c-43ab63a3c0de + - 5fc18d9d-29da-4364-b80b-7cae5c5f17c1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002344Z:a32e21e0-d2c7-4b37-8d0c-43ab63a3c0de + - WESTUS2:20241015T021207Z:5fc18d9d-29da-4364-b80b-7cae5c5f17c1 X-Msedge-Ref: - - 'Ref A: 27CC361BCD324C53A915B3A532666FFC Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:42Z' + - 'Ref A: C9FFF9A2FB474EC9B12B850111B4E70E Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:12:04Z' status: 200 OK code: 200 - duration: 1.7032128s - - id: 28 + duration: 3.862738s + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4299 + 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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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]}}}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4299" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 - method: POST + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726485607866194?api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4787 + content_length: 22 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\"}},\"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.\"}}},\"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\":[{\"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\",\"DEPENDSON\":[\"[SUBSCRIPTIONRESOURCEID(''MICROSOFT.RESOURCES/RESOURCEGROUPS'', 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.29.47.4906\",\"TEMPLATEHASH\":\"14384209273534421784\"}},\"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\"}}],\"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\":{\"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]}}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.29.47.4906\",\"TEMPLATEHASH\":\"6845266579015915401\"}}}","templateHash":"6845266579015915401"}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:44 GMT + - Tue, 15 Oct 2024 02:13:07 GMT Expires: - "-1" Pragma: @@ -1938,68 +2816,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 38fbd8bc-ccb5-434b-a36f-3d40bc8c9c81 + - b7f303d7-83fe-480a-85b6-0a132ae63333 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002344Z:38fbd8bc-ccb5-434b-a36f-3d40bc8c9c81 + - WESTUS2:20241015T021308Z:b7f303d7-83fe-480a-85b6-0a132ae63333 X-Msedge-Ref: - - 'Ref A: 383C2D94668D4266ACFED2EBBD50258F Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:44Z' + - 'Ref A: 4F88FD77D4F24BB9A2E875CF73725816 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:08Z' status: 200 OK code: 200 - duration: 67.5615ms - - id: 29 + duration: 232.047ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4683 + content_length: 0 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w4e3a08"},"intTagValue":{"value":678},"location":{"value":"eastus2"},"secureValue":{"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.29.47.4906","templateHash":"6845266579015915401"}},"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."}}},"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":[{"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.29.47.4906","templateHash":"14384209273534421784"}},"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"}}],"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-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - Content-Length: - - "4683" - Content-Type: - - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 - method: PUT + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1554 + content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:23:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:23:48.1869532Z","duration":"PT0.0008165S","correlationId":"a50cf7ca8e14bc8d9fbc20d192e1b041","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:12:04Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:12:44.9838191Z","duration":"PT37.5304965S","correlationId":"d0ce68da863a68367c2ecf7673d7ade9","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772342596986366?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1554" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:48 GMT + - Tue, 15 Oct 2024 02:13:08 GMT Expires: - "-1" Pragma: @@ -2011,21 +2883,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 5eb13a7c-abdb-4cfa-8b72-2d8752ffdb2e + - c795eb51-20f1-41f7-83a4-385812d3da63 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002348Z:5eb13a7c-abdb-4cfa-8b72-2d8752ffdb2e + - WESTUS2:20241015T021308Z:c795eb51-20f1-41f7-83a4-385812d3da63 X-Msedge-Ref: - - 'Ref A: 026C53524111481A9FC7CC365EBA364B Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:44Z' + - 'Ref A: 0681A6B0114B4126A4093BF384DECADA Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:08Z' status: 200 OK code: 200 - duration: 3.8864914s - - id: 30 + duration: 329.9401ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2039,15 +2911,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772342596986366?api-version=2021-04-01 + - d0ce68da863a68367c2ecf7673d7ade9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc8011%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2055,18 +2929,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 396 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","name":"rg-azdtest-wcc8011","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","DeleteAfter":"2024-10-15T03:12:04Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:49 GMT + - Tue, 15 Oct 2024 02:13:08 GMT Expires: - "-1" Pragma: @@ -2078,19 +2952,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - d0ce68da863a68367c2ecf7673d7ade9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 8848cffd-9573-4e68-844d-747874b4b5d5 + - 842a2d38-eb4c-478e-8446-81073f5cfcd0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002449Z:8848cffd-9573-4e68-844d-747874b4b5d5 + - WESTUS2:20241015T021309Z:842a2d38-eb4c-478e-8446-81073f5cfcd0 X-Msedge-Ref: - - 'Ref A: E5FFF29D71FE4DC9B1B8890CC3A5010A Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:49Z' + - 'Ref A: A33D325C14B841C583330274B12D8AC6 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:08Z' status: 200 OK code: 200 - duration: 335.8837ms - - id: 31 + duration: 82.4579ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2104,15 +2980,17 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2120,18 +2998,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 2194842 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:23:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:24:24.8891545Z","duration":"PT36.7030178S","correlationId":"a50cf7ca8e14bc8d9fbc20d192e1b041","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","location":"eastus2","name":"azdtest-wcc8011-1728957958","properties":{"correlationId":"d0ce68da863a68367c2ecf7673d7ade9","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","resourceName":"rg-azdtest-wcc8011","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT37.5304965S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}],"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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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":"2024-10-15T03:12:04Z"},"environmentName":{"type":"String","value":"azdtest-wcc8011"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-10-15T02:12:44.9838191Z"},"tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "2194842" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:49 GMT + - Tue, 15 Oct 2024 02:13:19 GMT Expires: - "-1" Pragma: @@ -2143,19 +3021,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 83b07ecd-7f83-42e7-b60e-1af0d33e8c20 + - 463da5b1-7b19-4116-9765-a28833254968 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002450Z:83b07ecd-7f83-42e7-b60e-1af0d33e8c20 + - WESTUS2:20241015T021320Z:463da5b1-7b19-4116-9765-a28833254968 X-Msedge-Ref: - - 'Ref A: FA65FEB750144E13B7AAB8DC0E3C08B5 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:49Z' + - 'Ref A: 5FA153CE42784443BECA3158BF49E0DB Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:13Z' status: 200 OK code: 200 - duration: 383.441ms - - id: 32 + duration: 7.2541319s + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2169,17 +3049,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e3a08%27&api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZLNbsIwDICfhZxBaoCijVuKkwmGXZImIHZDjKFS1EpbUX9Q330tWl9gO%2b1k%2bd%2f%2b7Ds7Zmkep7dDHmepzZJT%2bsXmd7aTkXXRmM3T2%2fU6ZFL8qHeWnsp8c%2fjM4y7h9VSxOeODpwHZfYn1fsSGjwiTFb2P8%2fHAJCpAOBfavQE6PSUIAgNX0N5WoZMe2QC03S7Ivn8YTuE68ooQXBt3rBGET%2fW5wlpMsNY%2bxtxFzignnzcWZIFWzDDRJdXLKdlk0vbxWNPP3C3zb0ZeCBIgOtg9%2bGgnQdJCkjVi%2fbtd%2fNlf8FehTaYIS47gWsRnnyIehJeVdJesMgpb9MZ2%2btZTL53UrlwZz1cGOr8uOxteREWPUymHIMu2XtE%2bi08qG7Gmab4B method: GET response: proto: HTTP/2.0 @@ -2187,18 +3065,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 738002 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","name":"rg-azdtest-w4e3a08","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","DeleteAfter":"2024-08-23T01:23:45Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "738002" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:49 GMT + - Tue, 15 Oct 2024 02:13:24 GMT Expires: - "-1" Pragma: @@ -2210,19 +3088,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 899b415c-3cc4-44ac-8f67-d9d173582b18 + - 34ae3eb9-ba7f-4940-b1ac-a3c00b0b85dc X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002450Z:899b415c-3cc4-44ac-8f67-d9d173582b18 + - WESTUS2:20241015T021325Z:34ae3eb9-ba7f-4940-b1ac-a3c00b0b85dc X-Msedge-Ref: - - 'Ref A: 3A1CC6148C974D1687C216255EAB9D08 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:50Z' + - 'Ref A: C7F864E862614617A5B3DF331C7E2308 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:20Z' status: 200 OK code: 200 - duration: 118.0316ms - - id: 33 + duration: 4.7842687s + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2236,17 +3116,15 @@ interactions: body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNPT8JAEMU%2fCz1L0mIxhNu2s01QZupuZ0vwRhArlLRGIf1j%2bO7uFv0CevL2JvMO75c38%2blt6%2bq0r86b076uuC531Yc3%2f%2fSkyNhkEyerXXt63Lyf9s7xsOu8uReMZiPidYv9euzdDA5dNz%2b7YBKOdJlECEWjzBOgUSFBFGk4gvLzBI30iSNQnMfEzy86oHSZ%2bU0Kxvq2PfLaxx6tNhPiIqA4MDonkx7uZS7xDksdafm25ESEKRd2Vi31C%2btXHfGi9S433%2fn%2fbfxsJUFSLIm1WP6OIpz9rQTYTvFQ%2bAjYEpdTjIPIFWAOdaeToQQeCjnmyGXCxvddMQbZ7mHR4EG1CLLJQXTIorWlhtS%2fblw5K5mxNDp9lL9Dm07%2bgtalLgqoABn7lO3ddN9oYKNL6TDIDFon9o5zTvQVFRy26hAW%2foCUqyZl2WAvAoJ1uCrG4x88k9168%2bp8PF5ph1e6jrEgAcL919VwuXwB method: GET response: proto: HTTP/2.0 @@ -2254,18 +3132,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151446 + content_length: 717738 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=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","location":"eastus2","name":"azdtest-w4e3a08-1724372388","properties":{"correlationId":"a50cf7ca8e14bc8d9fbc20d192e1b041","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","resourceName":"rg-azdtest-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT36.7030178S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}],"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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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":"2024-08-23T01:23:45Z"},"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"},"secureObject":{"type":"SecureObject"},"secureValue":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"6845266579015915401","timestamp":"2024-08-23T00:24:24.8891545Z"},"tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2151446" + - "717738" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:59 GMT + - Tue, 15 Oct 2024 02:13:29 GMT Expires: - "-1" Pragma: @@ -2277,19 +3155,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 4cc0e286-0411-4034-bf91-53e58643183b + - 2fb9aca8-509b-4a7a-82fc-df4430319597 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002500Z:4cc0e286-0411-4034-bf91-53e58643183b + - WESTUS2:20241015T021330Z:2fb9aca8-509b-4a7a-82fc-df4430319597 X-Msedge-Ref: - - 'Ref A: FE5F8F781450402DB226F843E6828ED6 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:52Z' + - 'Ref A: 5C0E0DC57C9A46EDAC42C29DF7D1F58A Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:25Z' status: 200 OK code: 200 - duration: 7.6582142s - - id: 34 + duration: 4.4444737s + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2308,10 +3188,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZDPbsIwDMafhZxBagggxI2SVFtZEuL8Qd0NsQ6VVq20FZUW9d2XjvEC22kHS7a%2fT%2fbPvqFjVdZZeTnUWVWaKk%2fLT7S6IbbWxuohK9NrvTt81Nlg2KYtWiE8Wo6ESa68SyZo%2fO2AqnloOFiOII9CTk%2bNsq%2bUWzUTNAyBFlQFLuKWBcKEVBm3EebtHbCQLzpoJLXedySCJj4YkWbtN%2bREbrDQNJ9LeiKiq1rwGj%2brQfNznieoH%2f%2fgTn%2fHSxZ%2f5Z1Kymeef847HkiNGbiQG1w8gQMNTuyci6nvaYPDyBYQg%2bMLnsMWrGrd2baCYbO3cTzcsmf%2f6vV3XP%2f68lIUD3pyL%2fv%2bCw%3d%3d + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TZBfa4NAEMQ%2fi%2fesoDYtxTd1T0ibPePdnmLegk2Df1BoDSYGv3tjEyGPv52ZhZkrK7q2L9vTvi%2b7lrr60P4y78q4r0grl3ntqWnMBy6kMg5chFyQ9DfLMeOKuJbxls%2f59nDut%2fufvpzffh4uzGOO8W4Iys845hYz%2fx2yGxbNeXUNWUcBwnFI9A5QJysBQSChgcROI9TcFhRAQmko6OtbOiLeKHuIQd98xYhQ2FjVTkzoIuRuHDpBXH1wXXUXGeEb1pJmVs6OpBZKpndOYX3TkgvC2kbyzxglA458wApHQetVdrQsNplsrqfVy3Pbp31CX%2fjgz6PdDdP0Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -2319,18 +3199,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 262264 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "262264" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:01 GMT + - Tue, 15 Oct 2024 02:13:32 GMT Expires: - "-1" Pragma: @@ -2342,19 +3222,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 663240aa-f05e-4e98-aef3-f8ce6d837117 + - 00cdfbcb-d7c4-4021-83bd-36260cb92f30 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002502Z:663240aa-f05e-4e98-aef3-f8ce6d837117 + - WESTUS2:20241015T021333Z:00cdfbcb-d7c4-4021-83bd-36260cb92f30 X-Msedge-Ref: - - 'Ref A: D120C3BE53F741BF939C7C62EA1AC322 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:00Z' + - 'Ref A: 06D61A721C0146EDB1F90BDD3CBE8186 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:30Z' status: 200 OK code: 200 - duration: 1.8340948s - - id: 35 + duration: 2.8936234s + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2375,10 +3257,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2388,7 +3270,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:23:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:24:24.8891545Z","duration":"PT36.7030178S","correlationId":"a50cf7ca8e14bc8d9fbc20d192e1b041","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:12:04Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:12:44.9838191Z","duration":"PT37.5304965S","correlationId":"d0ce68da863a68367c2ecf7673d7ade9","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: Cache-Control: - no-cache @@ -2397,7 +3279,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:01 GMT + - Tue, 15 Oct 2024 02:13:32 GMT Expires: - "-1" Pragma: @@ -2409,19 +3291,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 55a198c0-9684-4688-841a-3e74c062fc8f + - aec1d228-1ae5-4f62-b283-5aa20f981640 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002502Z:55a198c0-9684-4688-841a-3e74c062fc8f + - WESTUS2:20241015T021333Z:aec1d228-1ae5-4f62-b283-5aa20f981640 X-Msedge-Ref: - - 'Ref A: 60F492D68AF24DA9B7A65CF993714360 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:02Z' + - 'Ref A: 46908C4A728C496D921C0FC9D63F292B Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:33Z' status: 200 OK code: 200 - duration: 353.989ms - - id: 36 + duration: 389.0122ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2442,10 +3326,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e3a08%27&api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc8011%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2455,7 +3339,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","name":"rg-azdtest-w4e3a08","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","DeleteAfter":"2024-08-23T01:23:45Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","name":"rg-azdtest-wcc8011","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","DeleteAfter":"2024-10-15T03:12:04Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2464,7 +3348,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:01 GMT + - Tue, 15 Oct 2024 02:13:33 GMT Expires: - "-1" Pragma: @@ -2476,19 +3360,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - ac5b60b5-3912-4fc2-ae6c-ee4e4afbeda2 + - ff888012-a8ef-4838-9f9c-758991073bf7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002502Z:ac5b60b5-3912-4fc2-ae6c-ee4e4afbeda2 + - WESTUS2:20241015T021333Z:ff888012-a8ef-4838-9f9c-758991073bf7 X-Msedge-Ref: - - 'Ref A: 1E48E9DCDA474297912DB4C8055855AC Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:02Z' + - 'Ref A: A04BFF537A104B208E1F093D192A1A00 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:33Z' status: 200 OK code: 200 - duration: 97.6736ms - - id: 37 + duration: 50.9573ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2509,10 +3395,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/resources?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2522,7 +3408,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq","name":"stre7a272ymuxmq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg","name":"sty7a6txjorpubg","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011"}}]}' headers: Cache-Control: - no-cache @@ -2531,7 +3417,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:02 GMT + - Tue, 15 Oct 2024 02:13:33 GMT Expires: - "-1" Pragma: @@ -2543,19 +3429,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 401b0d39-41f6-49fe-b385-8b90b700e273 + - 33eba098-6ece-4b21-809c-05fe5adb2e86 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002503Z:401b0d39-41f6-49fe-b385-8b90b700e273 + - WESTUS2:20241015T021333Z:33eba098-6ece-4b21-809c-05fe5adb2e86 X-Msedge-Ref: - - 'Ref A: F11415F5DB1A418FAFEA32A248EE2F35 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:02Z' + - 'Ref A: 4BD0E555378846BFBC3FADA4F6DBBB18 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:33Z' status: 200 OK code: 200 - duration: 627.4732ms - - id: 38 + duration: 186.0889ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2576,10 +3464,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2589,7 +3477,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:23:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:24:24.8891545Z","duration":"PT36.7030178S","correlationId":"a50cf7ca8e14bc8d9fbc20d192e1b041","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:12:04Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:12:44.9838191Z","duration":"PT37.5304965S","correlationId":"d0ce68da863a68367c2ecf7673d7ade9","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: Cache-Control: - no-cache @@ -2598,7 +3486,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:02 GMT + - Tue, 15 Oct 2024 02:13:33 GMT Expires: - "-1" Pragma: @@ -2610,19 +3498,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 5324015e-ca1c-49c3-81b2-01a6c7092004 + - bc995a67-1f5e-4662-a90c-4b592ac3520c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002503Z:5324015e-ca1c-49c3-81b2-01a6c7092004 + - WESTUS2:20241015T021334Z:bc995a67-1f5e-4662-a90c-4b592ac3520c X-Msedge-Ref: - - 'Ref A: A69D4425B05C41A98AB1B088FE5F018A Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:03Z' + - 'Ref A: B9EDB456BBB44EF1AB9B0D595D922AF8 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:34Z' status: 200 OK code: 200 - duration: 378.2731ms - - id: 39 + duration: 419.8409ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2643,10 +3533,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e3a08%27&api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc8011%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2656,7 +3546,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08","name":"rg-azdtest-w4e3a08","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","DeleteAfter":"2024-08-23T01:23:45Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011","name":"rg-azdtest-wcc8011","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","DeleteAfter":"2024-10-15T03:12:04Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2665,7 +3555,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:03 GMT + - Tue, 15 Oct 2024 02:13:33 GMT Expires: - "-1" Pragma: @@ -2677,19 +3567,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - ff609a14-20c8-4f94-a3a1-43ab3d0fea8f + - f69bea6d-0186-4c5f-ba77-feac35352b4f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002503Z:ff609a14-20c8-4f94-a3a1-43ab3d0fea8f + - WESTUS2:20241015T021334Z:f69bea6d-0186-4c5f-ba77-feac35352b4f X-Msedge-Ref: - - 'Ref A: 96EBDEA2A44F4DEEB1ADFE72D7D1B634 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:03Z' + - 'Ref A: B4C2ECD5B6804F9D9F6F08EFB4971F01 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:34Z' status: 200 OK code: 200 - duration: 105.3785ms - - id: 40 + duration: 64.9664ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2710,10 +3602,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/resources?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2723,7 +3615,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq","name":"stre7a272ymuxmq","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg","name":"sty7a6txjorpubg","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011"}}]}' headers: Cache-Control: - no-cache @@ -2732,7 +3624,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:04 GMT + - Tue, 15 Oct 2024 02:13:34 GMT Expires: - "-1" Pragma: @@ -2744,19 +3636,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 50a90eb7-4621-4738-9090-ac90501530e6 + - d3b2712f-f311-4132-9f1c-cb5aa9658b5a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002504Z:50a90eb7-4621-4738-9090-ac90501530e6 + - WESTUS2:20241015T021334Z:d3b2712f-f311-4132-9f1c-cb5aa9658b5a X-Msedge-Ref: - - 'Ref A: 1043FAA0E07545F5AF2600C69F6B4A5B Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:03Z' + - 'Ref A: 00E913541DA840E595E36CF32C96017A Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:34Z' status: 200 OK code: 200 - duration: 1.0942722s - - id: 41 + duration: 184.5632ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2777,10 +3671,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w4e3a08?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wcc8011?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -2797,11 +3691,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:25:06 GMT + - Tue, 15 Oct 2024 02:13:35 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNEUzQTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599696146235030&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=b-xijvOsRcnGkyVTNzisbI_aSwcVdopdLWzBzlCufHD8ICtwJGS9nLBU0I07MUVuLggAW4KAY4M6fJqLJO9oQS2jJI0s4qt4V1asNb9aMr7U7zWJj6wwdgVTDy5xLEkQ7w-P1ZPZozDCb6QnpxgzcWLEjahfYP9T3rDZkJNoI1BSgdY3PFg9M1ad4Z3igHaYkiOPvt526IUefW_yYU-AicjrrpN9q-cbOCACapEdUqEgov4tgulu_VHXlUcoIP5XtMgcKY11ZfGRGLvRjLdtBIRqT27aRiA2IFS-0rg6zDbQtnN2xJ6ogBrRzt7_fRIrSwiEaeyKhn-tIQfuqqB8cg&h=MR3FVcDPTvhAaxVHER5R8fnYWtGvBxwU-r6GukOaINw + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQ0M4MDExLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645553388914700&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=EEAy72kwgtMkRkZsp8Fu-HF9B9lkDNgQtEuUXzYfHhb69K6ge2oWB6CvEaHhL73aldtbPiptA-fCYx1AuOKwae7qykETB4gmSjZoulYvA4IpwxIyc71kIMEbvv0_OiSAWiLPQ3iCSl5VDLnCuAeXwn3ai-l_8xiCdHlakRq6hR7-G6ZcNWROCtdz6_KsapCrh_fQyY69HxVJfaaRjVCmOvQwTanBTs7uFvIf9YLCk5gWaycgTwO_p3Nq4nrn4A6oLBUbjE7ZPdD7ZBUfo7qfxaQFNUlRiBFYs1UtviFZmgTR5INXXlbH9jyVIrJXfGLkvLECtPtPRejhKOOFNU6ycw&h=hkHunAD0bgi6gbjA56rdq5rGEHIn0sKg2EZkTyg-tiU Pragma: - no-cache Retry-After: @@ -2813,19 +3707,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - 65af53cb-bd9a-43dd-9229-2117066956a0 + - 919e7c47-6125-413d-b225-a60e6dc93244 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002507Z:65af53cb-bd9a-43dd-9229-2117066956a0 + - WESTUS2:20241015T021336Z:919e7c47-6125-413d-b225-a60e6dc93244 X-Msedge-Ref: - - 'Ref A: 1181B6F1C1AC4F39957A86D12C352EE2 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:04Z' + - 'Ref A: 6F16CF39042E4409B2E11349E87F1F2F Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:13:34Z' status: 202 Accepted code: 202 - duration: 2.1295817s - - id: 42 + duration: 1.2852861s + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2844,10 +3740,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNEUzQTA4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599696146235030&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=b-xijvOsRcnGkyVTNzisbI_aSwcVdopdLWzBzlCufHD8ICtwJGS9nLBU0I07MUVuLggAW4KAY4M6fJqLJO9oQS2jJI0s4qt4V1asNb9aMr7U7zWJj6wwdgVTDy5xLEkQ7w-P1ZPZozDCb6QnpxgzcWLEjahfYP9T3rDZkJNoI1BSgdY3PFg9M1ad4Z3igHaYkiOPvt526IUefW_yYU-AicjrrpN9q-cbOCACapEdUqEgov4tgulu_VHXlUcoIP5XtMgcKY11ZfGRGLvRjLdtBIRqT27aRiA2IFS-0rg6zDbQtnN2xJ6ogBrRzt7_fRIrSwiEaeyKhn-tIQfuqqB8cg&h=MR3FVcDPTvhAaxVHER5R8fnYWtGvBxwU-r6GukOaINw + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQ0M4MDExLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638645553388914700&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=EEAy72kwgtMkRkZsp8Fu-HF9B9lkDNgQtEuUXzYfHhb69K6ge2oWB6CvEaHhL73aldtbPiptA-fCYx1AuOKwae7qykETB4gmSjZoulYvA4IpwxIyc71kIMEbvv0_OiSAWiLPQ3iCSl5VDLnCuAeXwn3ai-l_8xiCdHlakRq6hR7-G6ZcNWROCtdz6_KsapCrh_fQyY69HxVJfaaRjVCmOvQwTanBTs7uFvIf9YLCk5gWaycgTwO_p3Nq4nrn4A6oLBUbjE7ZPdD7ZBUfo7qfxaQFNUlRiBFYs1UtviFZmgTR5INXXlbH9jyVIrJXfGLkvLECtPtPRejhKOOFNU6ycw&h=hkHunAD0bgi6gbjA56rdq5rGEHIn0sKg2EZkTyg-tiU method: GET response: proto: HTTP/2.0 @@ -2864,7 +3760,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:27:09 GMT + - Tue, 15 Oct 2024 02:15:53 GMT Expires: - "-1" Pragma: @@ -2876,19 +3772,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a9d090f1-ac1e-4895-b3d6-1940efc9aa6a + - 2fa2166a-2751-482c-a6f7-60ce842d1afb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002709Z:a9d090f1-ac1e-4895-b3d6-1940efc9aa6a + - WESTUS2:20241015T021554Z:2fa2166a-2751-482c-a6f7-60ce842d1afb X-Msedge-Ref: - - 'Ref A: C691405A6F844EF5BEBF943026A951AC Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:09Z' + - 'Ref A: 75927FA0FF0C4909BB052EBD723C8AEC Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:15:53Z' status: 200 OK code: 200 - duration: 265.5986ms - - id: 43 + duration: 467.8398ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2909,10 +3807,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2922,7 +3820,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e3a08","azd-provision-param-hash":"2ff027492cfaeeff7956b7d73e4efe74a1b46ef5033bf858a76137d193bceece"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e3a08"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:23:45Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:24:24.8891545Z","duration":"PT36.7030178S","correlationId":"a50cf7ca8e14bc8d9fbc20d192e1b041","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-w4e3a08","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e3a08"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/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-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stre7a272ymuxmq"},"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-w4e3a08"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e3a08/providers/Microsoft.Storage/storageAccounts/stre7a272ymuxmq"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc8011","azd-provision-param-hash":"b35ab2857ac39253c156e61bd7118c8c67c82346330c98cc81023164ccbd1591"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc8011"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-10-15T03:12:04Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:12:44.9838191Z","duration":"PT37.5304965S","correlationId":"d0ce68da863a68367c2ecf7673d7ade9","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-wcc8011","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc8011"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/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-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"sty7a6txjorpubg"},"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-wcc8011"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc8011/providers/Microsoft.Storage/storageAccounts/sty7a6txjorpubg"}]}}' headers: Cache-Control: - no-cache @@ -2931,7 +3829,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:09 GMT + - Tue, 15 Oct 2024 02:15:53 GMT Expires: - "-1" Pragma: @@ -2943,19 +3841,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 65258f0b-e15d-4c6c-8e68-71e08aa227c7 + - e1963271-71bc-4a6a-84e1-fe1e0c827e02 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002710Z:65258f0b-e15d-4c6c-8e68-71e08aa227c7 + - WESTUS2:20241015T021554Z:e1963271-71bc-4a6a-84e1-fe1e0c827e02 X-Msedge-Ref: - - 'Ref A: 639B60CCB6614D00A30E682C3ACA663D Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:09Z' + - 'Ref A: B4FD93A8A445498B89776FB9B1892CBF Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:15:54Z' status: 200 OK code: 200 - duration: 382.6437ms - - id: 44 + duration: 363.1116ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2966,7 +3866,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-w4e3a08"}}' + 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-wcc8011"}}' form: {} headers: Accept: @@ -2980,10 +3880,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2993,10 +3893,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e3a08"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:27:12.5628961Z","duration":"PT0.0002766S","correlationId":"f81c9faab1609d7375b3bc9f980432f9","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc8011"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-10-15T02:15:57.9536024Z","duration":"PT0.0004164S","correlationId":"257d7de4d6ea6143da0e81c57e2cb826","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772340543522140?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726483302924194?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -3004,7 +3904,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:12 GMT + - Tue, 15 Oct 2024 02:15:57 GMT Expires: - "-1" Pragma: @@ -3016,21 +3916,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.136.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - e454d122-a379-4548-9ae5-02c07daf61a9 + - e65e1507-0482-469a-8db0-ca3fd92f5d06 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002712Z:e454d122-a379-4548-9ae5-02c07daf61a9 + - WESTUS2:20241015T021558Z:e65e1507-0482-469a-8db0-ca3fd92f5d06 X-Msedge-Ref: - - 'Ref A: F6967CACF3E44DEFA06837F4ADB6D6CD Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:10Z' + - 'Ref A: 42068AAD59B244B4BF27CBA7C059AB31 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:15:54Z' status: 200 OK code: 200 - duration: 2.5812311s - - id: 45 + duration: 3.681727s + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3049,10 +3951,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388/operationStatuses/08584772340543522140?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958/operationStatuses/08584726483302924194?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3071,7 +3973,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:42 GMT + - Tue, 15 Oct 2024 02:15:58 GMT Expires: - "-1" Pragma: @@ -3083,19 +3985,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a0d79a67-30b1-4d76-9da1-0f51058c3102 + - 17fd4aaa-a9a8-41f0-ad03-6ed39326d5f3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002743Z:a0d79a67-30b1-4d76-9da1-0f51058c3102 + - WESTUS2:20241015T021558Z:17fd4aaa-a9a8-41f0-ad03-6ed39326d5f3 X-Msedge-Ref: - - 'Ref A: CB85DD968F0744909C89AD16CFDCB812 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:43Z' + - 'Ref A: D984034A9F334528BF4EE69CD1B74D8C Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:15:58Z' status: 200 OK code: 200 - duration: 368.8474ms - - id: 46 + duration: 429.8945ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3114,10 +4018,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.0; windows/amd64) X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e3a08-1724372388?api-version=2021-04-01 + - 257d7de4d6ea6143da0e81c57e2cb826 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3125,18 +4029,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-w4e3a08-1724372388","name":"azdtest-w4e3a08-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e3a08"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:27:13.245735Z","duration":"PT0.6831155S","correlationId":"f81c9faab1609d7375b3bc9f980432f9","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc8011-1728957958","name":"azdtest-wcc8011-1728957958","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc8011"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-10-15T02:15:58.6296336Z","duration":"PT0.6764476S","correlationId":"257d7de4d6ea6143da0e81c57e2cb826","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "605" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:43 GMT + - Tue, 15 Oct 2024 02:15:58 GMT Expires: - "-1" Pragma: @@ -3148,19 +4052,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - 257d7de4d6ea6143da0e81c57e2cb826 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 71f6292f-8db2-4009-b563-52b4abff7f23 + - f5fef1d7-3b19-42fe-9f8f-cc0e96deb6eb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002744Z:71f6292f-8db2-4009-b563-52b4abff7f23 + - WESTUS2:20241015T021559Z:f5fef1d7-3b19-42fe-9f8f-cc0e96deb6eb X-Msedge-Ref: - - 'Ref A: 8A2A1099D1C049F899299515A954A513 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:43Z' + - 'Ref A: 129180044B65492C8C1E4405721CEDD3 Ref B: CO6AA3150218031 Ref C: 2024-10-15T02:15:58Z' status: 200 OK code: 200 - duration: 380.3514ms + duration: 332.7343ms --- -env_name: azdtest-w4e3a08 +env_name: azdtest-wcc8011 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372388" +time: "1728957958" From ca49e0d58205818e43fa1d92470bcc36a6af4c88 Mon Sep 17 00:00:00 2001 From: hemarina Date: Thu, 17 Oct 2024 16:37:38 -0700 Subject: [PATCH 12/13] test --- cli/azd/pkg/azapi/standard_deployments.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index 2b15f015b20..29ce9e0a9bf 100644 --- a/cli/azd/pkg/azapi/standard_deployments.go +++ b/cli/azd/pkg/azapi/standard_deployments.go @@ -753,7 +753,7 @@ func validatePreflightError( err error, typeMessage string, ) error { - if rawResponse.StatusCode != 400 { + if rawResponse == nil || rawResponse.StatusCode == nil || rawResponse.StatusCode != 400 { return fmt.Errorf("calling preflight validate api failing to %s: %w", typeMessage, err) } From 3264e883e8f7c209383ebc33981f63f698cb286f Mon Sep 17 00:00:00 2001 From: hemarina Date: Thu, 17 Oct 2024 17:14:34 -0700 Subject: [PATCH 13/13] go build --- cli/azd/pkg/azapi/standard_deployments.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index 29ce9e0a9bf..e7307f92eb7 100644 --- a/cli/azd/pkg/azapi/standard_deployments.go +++ b/cli/azd/pkg/azapi/standard_deployments.go @@ -753,7 +753,7 @@ func validatePreflightError( err error, typeMessage string, ) error { - if rawResponse == nil || rawResponse.StatusCode == nil || rawResponse.StatusCode != 400 { + if rawResponse == nil || rawResponse.StatusCode != 400 { return fmt.Errorf("calling preflight validate api failing to %s: %w", typeMessage, err) }