diff --git a/cli/azd/pkg/azapi/deployments.go b/cli/azd/pkg/azapi/deployments.go index 55eab34a13f..47a7c29c92f 100644 --- a/cli/azd/pkg/azapi/deployments.go +++ b/cli/azd/pkg/azapi/deployments.go @@ -167,6 +167,26 @@ type DeploymentService interface { resourceGroupName string, deploymentName string, ) ([]*armresources.DeploymentOperation, error) + ValidatePreflightToSubscription( + ctx context.Context, + subscriptionId string, + location string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, + ) error + ValidatePreflightToResourceGroup( + ctx context.Context, + subscriptionId, + resourceGroup, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, + ) error WhatIfDeployToSubscription( ctx context.Context, subscriptionId string, diff --git a/cli/azd/pkg/azapi/stack_deployments.go b/cli/azd/pkg/azapi/stack_deployments.go index e973f902e6c..e185c2163a8 100644 --- a/cli/azd/pkg/azapi/stack_deployments.go +++ b/cli/azd/pkg/azapi/stack_deployments.go @@ -6,6 +6,7 @@ import ( "fmt" "log" "maps" + "net/http" "net/url" "os" "path/filepath" @@ -13,6 +14,7 @@ import ( "time" "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/armdeploymentstacks" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources" @@ -751,3 +753,136 @@ 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, + options map[string]any, +) 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, + } + } + + deploymentStackOptions, err := parseDeploymentStackOptions(options) + if err != nil { + return err + } + + stack := armdeploymentstacks.DeploymentStack{ + Tags: clonedTags, + Properties: &armdeploymentstacks.DeploymentStackProperties{ + BypassStackOutOfSyncError: deploymentStackOptions.BypassStackOutOfSyncError, + ActionOnUnmanage: deploymentStackOptions.ActionOnUnmanage, + DenySettings: deploymentStackOptions.DenySettings, + Parameters: stackParams, + Template: armTemplate, + }, + } + + var rawResponse *http.Response + ctxWithResp := runtime.WithCaptureResponse(ctx, &rawResponse) + + poller, err := client.BeginValidateStackAtResourceGroup(ctxWithResp, resourceGroup, deploymentName, stack, nil) + if err != nil { + return validatePreflightError(rawResponse, err, "resource group") + } + + _, err = poller.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 +} + +func (d *StackDeployments) ValidatePreflightToSubscription( + ctx context.Context, + subscriptionId string, + location string, + deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, +) 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, + } + } + + deploymentStackOptions, err := parseDeploymentStackOptions(options) + if err != nil { + return err + } + + stack := armdeploymentstacks.DeploymentStack{ + Location: &location, + Tags: clonedTags, + Properties: &armdeploymentstacks.DeploymentStackProperties{ + BypassStackOutOfSyncError: deploymentStackOptions.BypassStackOutOfSyncError, + ActionOnUnmanage: deploymentStackOptions.ActionOnUnmanage, + DenySettings: deploymentStackOptions.DenySettings, + Parameters: stackParams, + Template: armTemplate, + }, + } + + var rawResponse *http.Response + ctxWithResp := runtime.WithCaptureResponse(ctx, &rawResponse) + + poller, err := client.BeginValidateStackAtSubscription(ctxWithResp, deploymentName, stack, nil) + if err != nil { + return validatePreflightError(rawResponse, err, "subscription") + } + + _, err = poller.PollUntilDone(ctx, nil) + if err != nil { + deploymentError := createDeploymentError(err) + return fmt.Errorf( + "validating preflight to subscription:\n\nDeployment Error Details:\n%w", + deploymentError, + ) + } + + return nil +} diff --git a/cli/azd/pkg/azapi/standard_deployments.go b/cli/azd/pkg/azapi/standard_deployments.go index 9e7e1608878..e7307f92eb7 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" @@ -688,3 +691,129 @@ 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, + options map[string]any, +) 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 == nil || 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: %w", 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) + } +} + +func (ds *StandardDeployments) ValidatePreflightToResourceGroup( + ctx context.Context, + subscriptionId, resourceGroup, deploymentName string, + armTemplate azure.RawArmTemplate, + parameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, +) 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 +} diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index cfcf58943a9..0d8a31e31d4 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -556,6 +556,30 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*provisioning.DeployResult, logDS("%s", err.Error()) } + deploymentTags := map[string]*string{ + azure.TagKeyAzdEnvName: to.Ptr(p.env.Name()), + } + if parametersHashErr == nil { + 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 + } + cancelProgress := make(chan bool) defer func() { cancelProgress <- true }() go func() { @@ -593,18 +617,6 @@ func (p *BicepProvider) Deploy(ctx context.Context) (*provisioning.DeployResult, // 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) - } - - optionsMap, err := convert.ToMap(p.options) - if err != nil { - return nil, err - } - deployResult, err := p.deployModule( ctx, bicepDeploymentData.Target, @@ -1718,6 +1730,17 @@ func (p *BicepProvider) convertToDeployment(bicepTemplate azure.ArmTemplate) (*p return &template, nil } +func (p *BicepProvider) validatePreflight( + ctx context.Context, + target infra.Deployment, + armTemplate azure.RawArmTemplate, + armParameters azure.ArmParameters, + tags map[string]*string, + options map[string]any, +) error { + return target.ValidatePreflight(ctx, armTemplate, armParameters, tags, options) +} + // 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 e4e9e9f253d..44d1f6a0aed 100644 --- a/cli/azd/pkg/infra/scope.go +++ b/cli/azd/pkg/infra/scope.go @@ -30,6 +30,14 @@ type Deployment interface { OutputsUrl(ctx context.Context) (string, error) // DeploymentUrl is the URL that may be used to view this deployment progress in the Azure Portal. DeploymentUrl(ctx context.Context) (string, error) + // Validate a given template on preflight API + ValidatePreflight( + ctx context.Context, + 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( ctx context.Context, @@ -65,6 +73,17 @@ func (s *ResourceGroupDeployment) Name() string { return s.name } +func (s *ResourceGroupDeployment) ValidatePreflight( + 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, options) +} + func (s *ResourceGroupDeployment) Deploy( ctx context.Context, template azure.RawArmTemplate, @@ -256,6 +275,17 @@ func (s *SubscriptionDeployment) DeploymentUrl(ctx context.Context) (string, err return s.deployment.DeploymentUrl, nil } +func (s *SubscriptionDeployment) ValidatePreflight( + 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, options) +} + // Deploy a given template with a set of parameters. func (s *SubscriptionDeployment) Deploy( ctx context.Context, diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.dotnet.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.dotnet.yaml index 77769f2d096..919d9e7013a 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.dotnet.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.dotnet.yaml @@ -4,55 +4,48 @@ interactions: - id: 0 args: - publish - - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj + - C:\Users\hemarina\AppData\Local\Temp\aspire-deploy574917223\AspireAzdTests.ApiService\AspireAzdTests.ApiService.csproj - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=aspireazdtests/apiservice-azdtest-d72e96b - - -p:ContainerImageTag=azd-deploy-1726512656 - - -p:ContainerRegistry=acryvabyidqgqy7c.azurecr.io + - -p:ContainerRepository=aspire-azd-tests/apiservice-azdtest-w9954a4 + - -p:ContainerImageTag=azd-deploy-1730756618 + - -p:ContainerRegistry=acr7bjev4wfxb2j6.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 - stdout: | - {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2024-09-16T18:57:19.3333120Z","org.opencontainers.artifact.created":"2024-09-16T18:57:19.3333120Z","org.opencontainers.image.authors":"AspireAzdTests.ApiService","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.8","ASPNET_VERSION=8.0.8"],"WorkingDir":"/app","Entrypoint":["dotnet","AspireAzdTests.ApiService.dll"],"User":"1654"},"created":"2024-09-16T18:57:21.1003530Z","rootfs":{"type":"layers","diff_ids":["sha256:8e2ab394fabf557b00041a8f080b10b4e91c7027b7c174f095332c7ebb6501cb","sha256:c5584e992acccf9b806c7856dee6fc3e56d3f1ad5bc6b18670ed823970ca2f15","sha256:a762b3e4b25a47aa8ab9122dfe72c2df4823d5b9e36ccf492f521a51a9903385","sha256:cd861b0495bf9abbdb0dbfdfaa6a3a0295c6cdad014e9b2c19b6e7865d370cfa","sha256:f65dd6626428b05a483660e6ba573e994fd5dbbf9903b9628e5b0a384d5f285c","sha256:34ae416b2123ded236b0cd0d13fb0bdb59e457d795b8cab5701edb9e673a6d0c","sha256:880f37c5f2cc338cf9a9bc6dd8df872c5ab1d3bd22d3ab413acad6ce6842aca1"]},"architecture":"amd64","os":"linux","history":[{"created":"2024-09-04T22:30:47.4798092Z","created_by":"/bin/sh -c #(nop) ADD file:d13afefcc2b0b02b598a3ac2598fe2187db41de1e17820e5b600a955b1429d59 in / "},{"created":"2024-09-04T22:30:47.7729287Z","created_by":"/bin/sh -c #(nop) CMD [\u0022bash\u0022]","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:34.0586463Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:34.0586463Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:35.4158930Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:42.0586250Z","created_by":"ENV DOTNET_VERSION=8.0.8","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:42.0586250Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:43.0188024Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:48.6564553Z","created_by":"ENV ASPNET_VERSION=8.0.8","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:48.6564553Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2024-09-16T18:57:21.1003460Z","created_by":".NET SDK Container Tooling, version 8.0.200-rtm.24069.18\u002Baf4967de46a87229c49f6d567028791c4c4683d0"}]} + stdout: "{\"config\":{\"ExposedPorts\":{\"8080/tcp\":{}},\"Labels\":{\"org.opencontainers.image.created\":\"2024-11-04T21:51:36.0576947Z\",\"org.opencontainers.artifact.created\":\"2024-11-04T21:51:36.0576947Z\",\"org.opencontainers.image.authors\":\"AspireAzdTests.ApiService\",\"org.opencontainers.image.version\":\"1.0.0\",\"org.opencontainers.image.base.name\":\"mcr.microsoft.com/dotnet/aspnet:8.0\",\"net.dot.runtime.majorminor\":\"8.0\",\"net.dot.sdk.version\":\"8.0.403\",\"org.opencontainers.image.base.digest\":\"sha256:d4ada42ad1dc321729f3163cea08ed635dadf72d220a59011761babd83e7c172\"},\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"APP_UID=1654\",\"ASPNETCORE_HTTP_PORTS=8080\",\"DOTNET_RUNNING_IN_CONTAINER=true\",\"DOTNET_VERSION=8.0.10\",\"ASPNET_VERSION=8.0.10\"],\"WorkingDir\":\"/app\",\"Entrypoint\":[\"dotnet\",\"AspireAzdTests.ApiService.dll\"],\"User\":\"1654\"},\"created\":\"2024-11-04T21:51:42.5244959Z\",\"rootfs\":{\"type\":\"layers\",\"diff_ids\":[\"sha256:98b5f35ea9d3eca6ed1881b5fe5d1e02024e1450822879e4c13bb48c9386d0ad\",\"sha256:a990240cee6d79c28911f3cc74700e202aa53bf3fafff11139554fef451b6aed\",\"sha256:63b82d419b18ce93871c599ec595ffe61ec85bd32266dc7ab68af2dc449cb2f8\",\"sha256:869ab4bfb259dcb07faccf0dc5749451bb708b44f9fe62b851a27800a9638b72\",\"sha256:a82429eb8d3eb268801582dde88d4f9e010d25b6428cc254929688a910f1afbe\",\"sha256:e6ffb4bfae03faa855e09eb55d7df9447e301725212f20d3c9cd550e9dda5ed0\",\"sha256:e879d2277e6dcd487055e586678f56cf267bd728f6a8f1a14f14c15ad3705830\"]},\"architecture\":\"amd64\",\"os\":\"linux\",\"history\":[{\"created\":\"2024-10-17T00:20:29.7709258Z\",\"created_by\":\"/bin/sh -c #(nop) ADD file:90b9dd8f12120e8b2cd3ece45fcbe8af67e40565e2032a40f64bd921c43e2ce7 in / \"},{\"created\":\"2024-10-17T00:20:30.1111311Z\",\"created_by\":\"/bin/sh -c #(nop) CMD [\\u0022bash\\u0022]\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:48:59.1636621Z\",\"created_by\":\"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:48:59.1636621Z\",\"created_by\":\"RUN /bin/sh -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\\u002B\\u002B6 tzdata zlib1g \\u0026\\u0026 rm -rf /var/lib/apt/lists/* # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:00.6789706Z\",\"created_by\":\"RUN /bin/sh -c groupadd --gid=$APP_UID app \\u0026\\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:07.5321761Z\",\"created_by\":\"ENV DOTNET_VERSION=8.0.10\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:07.5321761Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:08.6312346Z\",\"created_by\":\"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:14.2932641Z\",\"created_by\":\"ENV ASPNET_VERSION=8.0.10\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:14.2932641Z\",\"created_by\":\"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit\"},{\"author\":\".NET SDK\",\"created\":\"2024-11-04T21:51:42.5244814Z\",\"created_by\":\".NET SDK Container Tooling, version 8.0.403-servicing.24469.19\\u002Baaee17ef7954216c7d62f9ec4b60d51f126f7306\"}]}\r\n" stderr: "" - id: 1 args: - publish - - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/AspireAzdTests.Web.csproj + - C:\Users\hemarina\AppData\Local\Temp\aspire-deploy574917223\AspireAzdTests.Web\AspireAzdTests.Web.csproj - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=aspireazdtests/webfrontend-azdtest-d72e96b - - -p:ContainerImageTag=azd-deploy-1726512656 - - -p:ContainerRegistry=acryvabyidqgqy7c.azurecr.io + - -p:ContainerRepository=aspire-azd-tests/webfrontend-azdtest-w9954a4 + - -p:ContainerImageTag=azd-deploy-1730756618 + - -p:ContainerRegistry=acr7bjev4wfxb2j6.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 - stdout: | - {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2024-09-16T18:58:26.7475460Z","org.opencontainers.artifact.created":"2024-09-16T18:58:26.7475460Z","org.opencontainers.image.authors":"AspireAzdTests.Web","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.8","ASPNET_VERSION=8.0.8"],"WorkingDir":"/app","Entrypoint":["dotnet","AspireAzdTests.Web.dll"],"User":"1654"},"created":"2024-09-16T18:58:27.9387860Z","rootfs":{"type":"layers","diff_ids":["sha256:8e2ab394fabf557b00041a8f080b10b4e91c7027b7c174f095332c7ebb6501cb","sha256:c5584e992acccf9b806c7856dee6fc3e56d3f1ad5bc6b18670ed823970ca2f15","sha256:a762b3e4b25a47aa8ab9122dfe72c2df4823d5b9e36ccf492f521a51a9903385","sha256:cd861b0495bf9abbdb0dbfdfaa6a3a0295c6cdad014e9b2c19b6e7865d370cfa","sha256:f65dd6626428b05a483660e6ba573e994fd5dbbf9903b9628e5b0a384d5f285c","sha256:34ae416b2123ded236b0cd0d13fb0bdb59e457d795b8cab5701edb9e673a6d0c","sha256:53dc0501bb6ddfad41d945e82f24569bb60ea3b71c90979b2786afa779a98131"]},"architecture":"amd64","os":"linux","history":[{"created":"2024-09-04T22:30:47.4798092Z","created_by":"/bin/sh -c #(nop) ADD file:d13afefcc2b0b02b598a3ac2598fe2187db41de1e17820e5b600a955b1429d59 in / "},{"created":"2024-09-04T22:30:47.7729287Z","created_by":"/bin/sh -c #(nop) CMD [\u0022bash\u0022]","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:34.0586463Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:34.0586463Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:35.4158930Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:42.0586250Z","created_by":"ENV DOTNET_VERSION=8.0.8","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:42.0586250Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:43.0188024Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:48.6564553Z","created_by":"ENV ASPNET_VERSION=8.0.8","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:48.6564553Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2024-09-16T18:58:27.9387780Z","created_by":".NET SDK Container Tooling, version 8.0.200-rtm.24069.18\u002Baf4967de46a87229c49f6d567028791c4c4683d0"}]} - stderr: | - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/Components/Pages/AzureBlobs.razor(45,12): warning CS8618: Non-nullable field '_html' must contain a non-null value when exiting constructor. Consider declaring the field as nullable. [/private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/Components/Pages/AzureTables.razor(57,23): warning CS8618: Non-nullable property 'PartitionKey' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [/private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/Components/Pages/AzureTables.razor(58,23): warning CS8618: Non-nullable property 'RowKey' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [/private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/Components/Pages/AzureTables.razor(61,23): warning CS8618: Non-nullable property 'Endpoint' must contain a non-null value when exiting constructor. Consider declaring the property as nullable. [/private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Web/AspireAzdTests.Web.csproj] + stdout: "{\"config\":{\"ExposedPorts\":{\"8080/tcp\":{}},\"Labels\":{\"org.opencontainers.image.created\":\"2024-11-04T21:52:33.8605171Z\",\"org.opencontainers.artifact.created\":\"2024-11-04T21:52:33.8605171Z\",\"org.opencontainers.image.authors\":\"AspireAzdTests.Web\",\"org.opencontainers.image.version\":\"1.0.0\",\"org.opencontainers.image.base.name\":\"mcr.microsoft.com/dotnet/aspnet:8.0\",\"net.dot.runtime.majorminor\":\"8.0\",\"net.dot.sdk.version\":\"8.0.403\",\"org.opencontainers.image.base.digest\":\"sha256:d4ada42ad1dc321729f3163cea08ed635dadf72d220a59011761babd83e7c172\"},\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"APP_UID=1654\",\"ASPNETCORE_HTTP_PORTS=8080\",\"DOTNET_RUNNING_IN_CONTAINER=true\",\"DOTNET_VERSION=8.0.10\",\"ASPNET_VERSION=8.0.10\"],\"WorkingDir\":\"/app\",\"Entrypoint\":[\"dotnet\",\"AspireAzdTests.Web.dll\"],\"User\":\"1654\"},\"created\":\"2024-11-04T21:52:34.8860709Z\",\"rootfs\":{\"type\":\"layers\",\"diff_ids\":[\"sha256:98b5f35ea9d3eca6ed1881b5fe5d1e02024e1450822879e4c13bb48c9386d0ad\",\"sha256:a990240cee6d79c28911f3cc74700e202aa53bf3fafff11139554fef451b6aed\",\"sha256:63b82d419b18ce93871c599ec595ffe61ec85bd32266dc7ab68af2dc449cb2f8\",\"sha256:869ab4bfb259dcb07faccf0dc5749451bb708b44f9fe62b851a27800a9638b72\",\"sha256:a82429eb8d3eb268801582dde88d4f9e010d25b6428cc254929688a910f1afbe\",\"sha256:e6ffb4bfae03faa855e09eb55d7df9447e301725212f20d3c9cd550e9dda5ed0\",\"sha256:3341b74969af2248e0ff6397c9e09213fa54de3a7f133dee06b7f96c3a63bdae\"]},\"architecture\":\"amd64\",\"os\":\"linux\",\"history\":[{\"created\":\"2024-10-17T00:20:29.7709258Z\",\"created_by\":\"/bin/sh -c #(nop) ADD file:90b9dd8f12120e8b2cd3ece45fcbe8af67e40565e2032a40f64bd921c43e2ce7 in / \"},{\"created\":\"2024-10-17T00:20:30.1111311Z\",\"created_by\":\"/bin/sh -c #(nop) CMD [\\u0022bash\\u0022]\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:48:59.1636621Z\",\"created_by\":\"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:48:59.1636621Z\",\"created_by\":\"RUN /bin/sh -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\\u002B\\u002B6 tzdata zlib1g \\u0026\\u0026 rm -rf /var/lib/apt/lists/* # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:00.6789706Z\",\"created_by\":\"RUN /bin/sh -c groupadd --gid=$APP_UID app \\u0026\\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:07.5321761Z\",\"created_by\":\"ENV DOTNET_VERSION=8.0.10\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:07.5321761Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:08.6312346Z\",\"created_by\":\"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:14.2932641Z\",\"created_by\":\"ENV ASPNET_VERSION=8.0.10\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:14.2932641Z\",\"created_by\":\"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit\"},{\"author\":\".NET SDK\",\"created\":\"2024-11-04T21:52:34.8860568Z\",\"created_by\":\".NET SDK Container Tooling, version 8.0.403-servicing.24469.19\\u002Baaee17ef7954216c7d62f9ec4b60d51f126f7306\"}]}\r\n" + stderr: "C:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\Components\\Pages\\AzureTables.razor(57,23): warning CS8618: Non-nullable property 'PartitionKey' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [C:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\AspireAzdTests.Web.csproj]\r\nC:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\Components\\Pages\\AzureTables.razor(58,23): warning CS8618: Non-nullable property 'RowKey' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [C:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\AspireAzdTests.Web.csproj]\r\nC:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\Components\\Pages\\AzureTables.razor(61,23): warning CS8618: Non-nullable property 'Endpoint' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [C:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\AspireAzdTests.Web.csproj]\r\nC:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\Components\\Pages\\AzureBlobs.razor(45,12): warning CS8618: Non-nullable field '_html' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable. [C:\\Users\\hemarina\\AppData\\Local\\Temp\\aspire-deploy574917223\\AspireAzdTests.Web\\AspireAzdTests.Web.csproj]\r\n" - id: 2 args: - publish - - /private/var/folders/h2/5h0c91tn2v1cr579ktgk37kc0000gn/T/aspire-deploy4096105403/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj + - C:\Users\hemarina\AppData\Local\Temp\aspire-deploy574917223\AspireAzdTests.Worker\AspireAzdTests.Worker.csproj - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=aspireazdtests/worker-azdtest-d72e96b - - -p:ContainerImageTag=azd-deploy-1726512656 - - -p:ContainerRegistry=acryvabyidqgqy7c.azurecr.io + - -p:ContainerRepository=aspire-azd-tests/worker-azdtest-w9954a4 + - -p:ContainerImageTag=azd-deploy-1730756618 + - -p:ContainerRegistry=acr7bjev4wfxb2j6.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 - stdout: | - {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2024-09-16T18:59:08.5084290Z","org.opencontainers.artifact.created":"2024-09-16T18:59:08.5084290Z","org.opencontainers.image.authors":"AspireAzdTests.Worker","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.8","ASPNET_VERSION=8.0.8"],"WorkingDir":"/app","Entrypoint":["dotnet","AspireAzdTests.Worker.dll"],"User":"1654"},"created":"2024-09-16T18:59:09.4772260Z","rootfs":{"type":"layers","diff_ids":["sha256:8e2ab394fabf557b00041a8f080b10b4e91c7027b7c174f095332c7ebb6501cb","sha256:c5584e992acccf9b806c7856dee6fc3e56d3f1ad5bc6b18670ed823970ca2f15","sha256:a762b3e4b25a47aa8ab9122dfe72c2df4823d5b9e36ccf492f521a51a9903385","sha256:cd861b0495bf9abbdb0dbfdfaa6a3a0295c6cdad014e9b2c19b6e7865d370cfa","sha256:f65dd6626428b05a483660e6ba573e994fd5dbbf9903b9628e5b0a384d5f285c","sha256:34ae416b2123ded236b0cd0d13fb0bdb59e457d795b8cab5701edb9e673a6d0c","sha256:35b6308d7fca70ace2b5fd16652d5a0c34ab2c3738a4a50fdc4c68b2e83e8d30"]},"architecture":"amd64","os":"linux","history":[{"created":"2024-09-04T22:30:47.4798092Z","created_by":"/bin/sh -c #(nop) ADD file:d13afefcc2b0b02b598a3ac2598fe2187db41de1e17820e5b600a955b1429d59 in / "},{"created":"2024-09-04T22:30:47.7729287Z","created_by":"/bin/sh -c #(nop) CMD [\u0022bash\u0022]","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:34.0586463Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:34.0586463Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:35.4158930Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:42.0586250Z","created_by":"ENV DOTNET_VERSION=8.0.8","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:42.0586250Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:43.0188024Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:48.6564553Z","created_by":"ENV ASPNET_VERSION=8.0.8","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-09-10T13:49:48.6564553Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2024-09-16T18:59:09.4772180Z","created_by":".NET SDK Container Tooling, version 8.0.200-rtm.24069.18\u002Baf4967de46a87229c49f6d567028791c4c4683d0"}]} + stdout: "{\"config\":{\"ExposedPorts\":{\"8080/tcp\":{}},\"Labels\":{\"org.opencontainers.image.created\":\"2024-11-04T21:53:01.5421338Z\",\"org.opencontainers.artifact.created\":\"2024-11-04T21:53:01.5421338Z\",\"org.opencontainers.image.authors\":\"AspireAzdTests.Worker\",\"org.opencontainers.image.version\":\"1.0.0\",\"org.opencontainers.image.base.name\":\"mcr.microsoft.com/dotnet/aspnet:8.0\",\"net.dot.runtime.majorminor\":\"8.0\",\"net.dot.sdk.version\":\"8.0.403\",\"org.opencontainers.image.base.digest\":\"sha256:d4ada42ad1dc321729f3163cea08ed635dadf72d220a59011761babd83e7c172\"},\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"APP_UID=1654\",\"ASPNETCORE_HTTP_PORTS=8080\",\"DOTNET_RUNNING_IN_CONTAINER=true\",\"DOTNET_VERSION=8.0.10\",\"ASPNET_VERSION=8.0.10\"],\"WorkingDir\":\"/app\",\"Entrypoint\":[\"dotnet\",\"AspireAzdTests.Worker.dll\"],\"User\":\"1654\"},\"created\":\"2024-11-04T21:53:02.3464006Z\",\"rootfs\":{\"type\":\"layers\",\"diff_ids\":[\"sha256:98b5f35ea9d3eca6ed1881b5fe5d1e02024e1450822879e4c13bb48c9386d0ad\",\"sha256:a990240cee6d79c28911f3cc74700e202aa53bf3fafff11139554fef451b6aed\",\"sha256:63b82d419b18ce93871c599ec595ffe61ec85bd32266dc7ab68af2dc449cb2f8\",\"sha256:869ab4bfb259dcb07faccf0dc5749451bb708b44f9fe62b851a27800a9638b72\",\"sha256:a82429eb8d3eb268801582dde88d4f9e010d25b6428cc254929688a910f1afbe\",\"sha256:e6ffb4bfae03faa855e09eb55d7df9447e301725212f20d3c9cd550e9dda5ed0\",\"sha256:dc2b5df473be0e1d400a0bda1e5bac49405c5b2c7e89956e49ea3ade94ef51cc\"]},\"architecture\":\"amd64\",\"os\":\"linux\",\"history\":[{\"created\":\"2024-10-17T00:20:29.7709258Z\",\"created_by\":\"/bin/sh -c #(nop) ADD file:90b9dd8f12120e8b2cd3ece45fcbe8af67e40565e2032a40f64bd921c43e2ce7 in / \"},{\"created\":\"2024-10-17T00:20:30.1111311Z\",\"created_by\":\"/bin/sh -c #(nop) CMD [\\u0022bash\\u0022]\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:48:59.1636621Z\",\"created_by\":\"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:48:59.1636621Z\",\"created_by\":\"RUN /bin/sh -c apt-get update \\u0026\\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\\u002B\\u002B6 tzdata zlib1g \\u0026\\u0026 rm -rf /var/lib/apt/lists/* # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:00.6789706Z\",\"created_by\":\"RUN /bin/sh -c groupadd --gid=$APP_UID app \\u0026\\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:07.5321761Z\",\"created_by\":\"ENV DOTNET_VERSION=8.0.10\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:07.5321761Z\",\"created_by\":\"COPY /dotnet /usr/share/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:08.6312346Z\",\"created_by\":\"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit\"},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:14.2932641Z\",\"created_by\":\"ENV ASPNET_VERSION=8.0.10\",\"empty_layer\":true},{\"comment\":\"buildkit.dockerfile.v0\",\"created\":\"2024-10-17T08:49:14.2932641Z\",\"created_by\":\"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit\"},{\"author\":\".NET SDK\",\"created\":\"2024-11-04T21:53:02.3463850Z\",\"created_by\":\".NET SDK Container Tooling, version 8.0.403-servicing.24469.19\\u002Baaee17ef7954216c7d62f9ec4b60d51f126f7306\"}]}\r\n" stderr: "" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.yaml index 56bba2e6d95..09207c3adbf 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Aspire_Deploy.yaml @@ -22,9 +22,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:29 GMT + - Mon, 04 Nov 2024 21:44:55 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - 6c9a9a23-8659-4199-a95d-ab411b85ad3b + - 08f728ab-97b0-428e-96c5-ea317bb67bdd X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185129Z:6c9a9a23-8659-4199-a95d-ab411b85ad3b + - WESTUS2:20241104T214455Z:08f728ab-97b0-428e-96c5-ea317bb67bdd X-Msedge-Ref: - - 'Ref A: CC36340CA0A540E69A3CF6F8B8536EC9 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:27Z' + - 'Ref A: E3CAEF311B744BBF962CCB85D1962F94 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:44:52Z' status: 200 OK code: 200 - duration: 3.044720375s + duration: 3.9326813s - id: 1 request: proto: HTTP/1.1 @@ -89,9 +91,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a 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: 251051 + content_length: 1786891 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=1c7dSoRAGMbxa%2fE9NhhtifBsnBlBdue1%2bVqws8UsTBmjXMZcvPfWooMuoePn%2f8DvAs3op86fT1M3ejv2rf%2bA7AKFpsgEE2g1PUDmz8MQg6DGOpNuu2%2fn6eH0PnXbbd9%2bQgZJdB%2bhrWe51DcQfxd6DL9bQnaR7otc8peg3COXTu2Q57nmA1fkWEgnCNqcK3tkaJ%2bedYLVwZBQcXftmkQuNMWlvq14H%2bRrOVcsQSPe9po0d7JXMy5lem2CtCKFNQZGkXK6if%2fq%2fwV%2bY1NT0h%2f6un4B","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "251051" + - "1786891" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:31 GMT + - Mon, 04 Nov 2024 21:45:02 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1100" X-Ms-Request-Id: - - f5cedf36-4301-4150-8c06-d80a368bd94d + - 8fc516f5-f6cc-420a-8302-015aba2850d4 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185131Z:f5cedf36-4301-4150-8c06-d80a368bd94d + - WESTUS2:20241104T214503Z:8fc516f5-f6cc-420a-8302-015aba2850d4 X-Msedge-Ref: - - 'Ref A: 85D896E069B34B38AB1B43D8E4ADC627 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:30Z' + - 'Ref A: 9A1CCC04C1BD43FB91B95DD3B7CF1466 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:44:56Z' status: 200 OK code: 200 - duration: 2.013200458s + duration: 7.2926882s - id: 2 request: proto: HTTP/1.1 @@ -154,10 +158,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1c7dSoRAGMbxa%2fE9NhhtifBsnBlBdue1%2bVqws8UsTBmjXMZcvPfWooMuoePn%2f8DvAs3op86fT1M3ejv2rf%2bA7AKFpsgEE2g1PUDmz8MQg6DGOpNuu2%2fn6eH0PnXbbd9%2bQgZJdB%2bhrWe51DcQfxd6DL9bQnaR7otc8peg3COXTu2Q57nmA1fkWEgnCNqcK3tkaJ%2bedYLVwZBQcXftmkQuNMWlvq14H%2bRrOVcsQSPe9po0d7JXMy5lem2CtCKFNQZGkXK6if%2fq%2fwV%2bY1NT0h%2f6un4B + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -165,18 +169,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 317589 + content_length: 1738781 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=3VPLbsIwEPwWfAYp5lFV3JysIyisjR1vqnBDKY0SUCK1QUlA%2fHtJW36gPbWnnd2dw%2byM9sLSqqzz8rSr86p01WFfvrP5hUkROYrGPSz3bb3ZvdV5z1jtOzZnfPA4UC5p8ZyM2PCTYavmvuPedGAPoY%2bQNYa2gGSmCnzfwhGMF4dI0lPOB%2bPiQLmXV8uVXkdeo4FuvJTjOeMalhyLbKIBxxjwhLyMK1d1FuQEi6TDQjZYpCN2HX5r%2fRNSaRVpcgs2L0%2fH45Apbd1CktUb%2bTP5s%2fEvnRYz5UTXO44FtphzXxdPkuDmtJQPeLDKEPVVWtr6MbVE59suNG3Pw0J0CsQMnSWEtNHONAoyT8fVZzLPMnL%2f%2bLzQChXIQCpnxfqeaSCUANH%2fz33SYxEtxVd%2fvX4A","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "317589" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:35 GMT + - Mon, 04 Nov 2024 21:45:07 GMT Expires: - "-1" Pragma: @@ -188,18 +192,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - 72a097a7-c583-4069-b84f-b7025230c0d5 + - a3d3d3bf-9f62-4daf-975c-e962e46c6ded X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185135Z:72a097a7-c583-4069-b84f-b7025230c0d5 + - WESTUS2:20241104T214508Z:a3d3d3bf-9f62-4daf-975c-e962e46c6ded X-Msedge-Ref: - - 'Ref A: 70D1F80F0CEE45319C6E7A43CC041D56 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:32Z' + - 'Ref A: 622D10357BCB45669A54E6809A370878 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:03Z' status: 200 OK code: 200 - duration: 3.830421916s + duration: 4.726565s - id: 3 request: proto: HTTP/1.1 @@ -219,10 +225,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3VPLbsIwEPwWfAYp5lFV3JysIyisjR1vqnBDKY0SUCK1QUlA%2fHtJW36gPbWnnd2dw%2byM9sLSqqzz8rSr86p01WFfvrP5hUkROYrGPSz3bb3ZvdV5z1jtOzZnfPA4UC5p8ZyM2PCTYavmvuPedGAPoY%2bQNYa2gGSmCnzfwhGMF4dI0lPOB%2bPiQLmXV8uVXkdeo4FuvJTjOeMalhyLbKIBxxjwhLyMK1d1FuQEi6TDQjZYpCN2HX5r%2fRNSaRVpcgs2L0%2fH45Apbd1CktUb%2bTP5s%2fEvnRYz5UTXO44FtphzXxdPkuDmtJQPeLDKEPVVWtr6MbVE59suNG3Pw0J0CsQMnSWEtNHONAoyT8fVZzLPMnL%2f%2bLzQChXIQCpnxfqeaSCUANH%2fz33SYxEtxVd%2fvX4A + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -230,18 +236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 314557 + content_length: 1207133 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=1ZNNa8JAEIZ%2fi3tWSLQp4m2T2dCqO%2bt%2bjMXeSmrFRBJolSSK%2f72JNlDopbSHUvaw83V4n3l3Tywp8v02Pzztt0Xuimydv7HJiQluHdlhG%2bbrar94et1v24nZumYT5vfGPXSrSh5XA9a%2fTJii7Hq%2bN%2b6ZLA4lbEpNjyBJ3yCEoYEdaG8ZSxIeuhC0W0bonl%2bMj2puvVIBNXOJjyBqCfwom6Oc9lXko43ROBCVSqdCuqTGVAQIG0%2bWgwE79z%2f0%2fhu5qIy7E2TUQvxMczD85YqzCp0uZboJME2GMvLDdrUERW2EuJWZQSt0ewtDj%2bGSKqJj04v11YKU1wg8kG5KEnTZ2DRSkNUqLi52PAjr%2fhQvCRTce9KJUYPpKfsVTxN9Ey9p8JqXeZTDz3hkR2ySH3a7PqOZVeTuujQ2HCMRCXSGz7tixJEDb79VV2ljbu%2f5NT%2bf3wE%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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "314557" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:39 GMT + - Mon, 04 Nov 2024 21:45:12 GMT Expires: - "-1" Pragma: @@ -253,18 +259,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 2eb7f70f-b947-4cb5-af2c-3786745a9b44 + - 21385a4c-1dd6-4ce8-9dab-5cdda90eeca9 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185139Z:2eb7f70f-b947-4cb5-af2c-3786745a9b44 + - WESTUS2:20241104T214512Z:21385a4c-1dd6-4ce8-9dab-5cdda90eeca9 X-Msedge-Ref: - - 'Ref A: 4F8BD2FCD74F41FCA90399561B801DC5 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:35Z' + - 'Ref A: 9F816FE623CE42CCB0A3B66D386CC2F1 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:08Z' status: 200 OK code: 200 - duration: 3.499972s + duration: 4.2386663s - id: 4 request: proto: HTTP/1.1 @@ -284,10 +292,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNNa8JAEIZ%2fi3tWSLQp4m2T2dCqO%2bt%2bjMXeSmrFRBJolSSK%2f72JNlDopbSHUvaw83V4n3l3Tywp8v02Pzztt0Xuimydv7HJiQluHdlhG%2bbrar94et1v24nZumYT5vfGPXSrSh5XA9a%2fTJii7Hq%2bN%2b6ZLA4lbEpNjyBJ3yCEoYEdaG8ZSxIeuhC0W0bonl%2bMj2puvVIBNXOJjyBqCfwom6Oc9lXko43ROBCVSqdCuqTGVAQIG0%2bWgwE79z%2f0%2fhu5qIy7E2TUQvxMczD85YqzCp0uZboJME2GMvLDdrUERW2EuJWZQSt0ewtDj%2bGSKqJj04v11YKU1wg8kG5KEnTZ2DRSkNUqLi52PAjr%2fhQvCRTce9KJUYPpKfsVTxN9Ey9p8JqXeZTDz3hkR2ySH3a7PqOZVeTuujQ2HCMRCXSGz7tixJEDb79VV2ljbu%2f5NT%2bf3wE%3d + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -295,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534034 + content_length: 128484 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=pZJPb4JAEMU%2fi3vWhFVsGm8Ls0TU3XX%2fDI3ejLVGMJC0GBDjdy%2fYkvTSk6eZ9%2bbNJr%2fM3si%2byMtTftmVpyJ3RXbIv8jsRjizDu2YzPLL%2bTz8lb2Syrg5R6PWvMvmh7pc7z7LU%2ffE8nAlM0IHrwPpNrVoNiMyfCRMUfUz6vsDk0WBgGOlcQsCtS8hCAycQXtJJJB70gWgXRJK9%2f5hqFQr61UKsM3tqXToyXQzUY5PFGRUhDRQ6YIjFFfD%2bYvIjLRcP6pOjl1F4doZxJVIddXu1QnwSkDmiSaeyibZkfuQvHHrnsGajp%2fEYpVsjlQAo6LZ%2b%2bp%2fLG5wGyRYIzYtVqTrDl%2bk7CqBTYVboGjxlGt9iMcyKkY93p%2bbdrRoJ%2f1RcWkVunkvI8NkyEMunWGr3gyZZMC6v9E7Xc9szH70%2ff4N","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "534034" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:42 GMT + - Mon, 04 Nov 2024 21:45:14 GMT Expires: - "-1" Pragma: @@ -318,18 +326,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - 463c4b95-dcbe-4a1d-a57e-4cd0838adb4f + - 46bd5285-db10-4c7e-a8aa-60d9966d5d39 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185143Z:463c4b95-dcbe-4a1d-a57e-4cd0838adb4f + - WESTUS2:20241104T214514Z:46bd5285-db10-4c7e-a8aa-60d9966d5d39 X-Msedge-Ref: - - 'Ref A: 8F82789579984BE9A76506983968DFA7 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:39Z' + - 'Ref A: 9BC91458704D455B863D37D4DF817CD8 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:12Z' status: 200 OK code: 200 - duration: 3.90271575s + duration: 1.8521038s - id: 5 request: proto: HTTP/1.1 @@ -349,10 +359,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZJPb4JAEMU%2fi3vWhFVsGm8Ls0TU3XX%2fDI3ejLVGMJC0GBDjdy%2fYkvTSk6eZ9%2bbNJr%2fM3si%2byMtTftmVpyJ3RXbIv8jsRjizDu2YzPLL%2bTz8lb2Syrg5R6PWvMvmh7pc7z7LU%2ffE8nAlM0IHrwPpNrVoNiMyfCRMUfUz6vsDk0WBgGOlcQsCtS8hCAycQXtJJJB70gWgXRJK9%2f5hqFQr61UKsM3tqXToyXQzUY5PFGRUhDRQ6YIjFFfD%2bYvIjLRcP6pOjl1F4doZxJVIddXu1QnwSkDmiSaeyibZkfuQvHHrnsGajp%2fEYpVsjlQAo6LZ%2b%2bp%2fLG5wGyRYIzYtVqTrDl%2bk7CqBTYVboGjxlGt9iMcyKkY93p%2bbdrRoJ%2f1RcWkVunkvI8NkyEMunWGr3gyZZMC6v9E7Xc9szH70%2ff4N + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -360,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 174774 + content_length: 537 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=xZBdb4IwFIZ%2fi72eCTBcjHeFlvl1WltaDLsz6AzFQLJhAI3%2ffRRHsn%2bwq3Oe9z1J8%2fSOsqqs8%2fJ6qPOqVFVxKr%2fR4o4Yl2pJteQ7arE8tfXu8FXn9mpz6tACuZP5hKm0hVs6RS%2fDhayasXP9%2bUQWUQDk3Aj9QUALn5EgkORChJNEoKnDVECESkKmjp%2fSZXwbOw0nur%2fLXGbAB5N17AYeM9mMh27AzZpqU3WSumu7JzoaptJROjChb1CIDsjKAVK0EIkWFJ6B6acRzv48naLHC9rTWP2nmko7Zs4tJ9jr9VrIf9WIVbMKclCVNHkXSQL9Z9lMg%2bp7smp6lYYr2iYE%2b4Omwh6Y48GqURwrHXtoUV4vlxFHst5%2fyie%2bjq3exFyr5YiRxCykIWVK4u0Yhphhgu0jY2J3HK%2fwkx%2bPHw%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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "174774" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:45 GMT + - Mon, 04 Nov 2024 21:45:14 GMT Expires: - "-1" Pragma: @@ -383,18 +393,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 98cfd457-5f1b-4f8f-bd12-a5e82dda3537 + - 91570f4e-2008-4618-be69-3d85a5fb6e04 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185146Z:98cfd457-5f1b-4f8f-bd12-a5e82dda3537 + - WESTUS2:20241104T214515Z:91570f4e-2008-4618-be69-3d85a5fb6e04 X-Msedge-Ref: - - 'Ref A: D9EB3CB9D8EC406C902E1E8CA40B3142 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:43Z' + - 'Ref A: BFC9F0E9A580494091265A2AE3258287 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:14Z' status: 200 OK code: 200 - duration: 2.947569708s + duration: 629.5607ms - id: 6 request: proto: HTTP/1.1 @@ -414,10 +426,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZBdb4IwFIZ%2fi72eCTBcjHeFlvl1WltaDLsz6AzFQLJhAI3%2ffRRHsn%2bwq3Oe9z1J8%2fSOsqqs8%2fJ6qPOqVFVxKr%2fR4o4Yl2pJteQ7arE8tfXu8FXn9mpz6tACuZP5hKm0hVs6RS%2fDhayasXP9%2bUQWUQDk3Aj9QUALn5EgkORChJNEoKnDVECESkKmjp%2fSZXwbOw0nur%2fLXGbAB5N17AYeM9mMh27AzZpqU3WSumu7JzoaptJROjChb1CIDsjKAVK0EIkWFJ6B6acRzv48naLHC9rTWP2nmko7Zs4tJ9jr9VrIf9WIVbMKclCVNHkXSQL9Z9lMg%2bp7smp6lYYr2iYE%2b4Omwh6Y48GqURwrHXtoUV4vlxFHst5%2fyie%2bjq3exFyr5YiRxCykIWVK4u0Yhphhgu0jY2J3HK%2fwkx%2bPHw%3d%3d + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -425,18 +437,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 730460 + content_length: 12 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=pY%2fLbsIwEEW%2fBa9BiltSIXZO7AAFj7EzDqI7RCkiQYnUBuWB%2bPdiolTds5sz92pG50r2RV6e8suuPBU5Ftkh%2fyHTKwFlcC6sUWvhMD%2fU5Xr3XZ5ca3loyJTQwWQAuK1lux2R4aNhiqrPqP8yMFkUSH6stP3g0uox8CAw%2fMy1l0TSCg8w4BqTEPDzy1BQq9irFLf33p5CqqlsFzWkWwptVkFIA5W%2bC8uLxgjxJjMD3Wyi%2b58EI4MuT7i8Z7qRfOFJntUy0pVC5gPKRmFWb46jEbkNyUbE%2bIzeePKsXg1ctpBmteJZ%2b6eXOj0zw8RpmJltHdNg47Qj3ThFmbIGOPMlBlYiu%2bvpFrj1ZVI81ASL0cYvZJpfzuch6bAn5%2f0v7PC1T%2b0yVhbnPUaGQShCAWjYql%2bGDBhn7mq%2fcTOLF6zj2%2b0X","value":[]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "730460" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:49 GMT + - Mon, 04 Nov 2024 21:45:15 GMT Expires: - "-1" Pragma: @@ -448,125 +460,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 30ba9f30-3119-46e6-86e9-62f458edb4b7 + - 33018978-e7c6-45d3-9127-ab3f89e2bead X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185150Z:30ba9f30-3119-46e6-86e9-62f458edb4b7 + - WESTUS2:20241104T214515Z:33018978-e7c6-45d3-9127-ab3f89e2bead X-Msedge-Ref: - - 'Ref A: 2AC900F4B81E4AD9AC8BCF93FBE8483E Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:46Z' + - 'Ref A: 7C275F41B65041B8A344FF232352E2C8 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:15Z' status: 200 OK code: 200 - duration: 3.901714042s + duration: 474.1036ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 23899 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w9954a4"},"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":"3447098018377705335"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention, the name of the resource group for your application will use this name, prefixed with rg-"}},"location":{"type":"string","minLength":1,"metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"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":{"location":{"value":"[parameters(''location'')]"},"tags":{"value":"[variables(''tags'')]"},"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":"3054607656997567302"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags that will be applied to all resources"}}},"variables":{"resourceToken":"[uniqueString(resourceGroup().id)]"},"resources":[{"type":"Microsoft.App/managedEnvironments/dotNetComponents","apiVersion":"2024-02-02-preview","name":"[format(''{0}/{1}'', format(''cae-{0}'', variables(''resourceToken'')), ''aspire-dashboard'')]","properties":{"componentType":"AspireDashboard"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[parameters(''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":"[parameters(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-02-02-preview","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":"[parameters(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/managedEnvironments/{0}'', format(''cae-{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.KeyVault/vaults","apiVersion":"2023-07-01","name":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","properties":{"sku":{"name":"standard","family":"A"},"tenantId":"[subscription().tenantId]","enableRbacAuthorization":true}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').clientId]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[format(''mi-{0}'', variables(''resourceToken''))]"},"MANAGED_IDENTITY_PRINCIPAL_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[format(''law-{0}'', variables(''resourceToken''))]"},"AZURE_LOG_ANALYTICS_WORKSPACE_ID":{"type":"string","value":"[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), ''2024-02-02-preview'').defaultDomain]"},"SERVICE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').vaultUri]"},"SERVICE_BINDING_KVF2EDECB5_NAME":{"type":"string","value":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"cosmos","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"keyVaultName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"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":"9561877192170741248"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":""}},"keyVaultName":{"type":"string","metadata":{"description":""}}},"resources":[{"type":"Microsoft.DocumentDB/databaseAccounts","apiVersion":"2023-04-15","name":"[toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))]","location":"[parameters(''location'')]","tags":{"aspire-resource-name":"cosmos"},"kind":"GlobalDocumentDB","properties":{"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session"},"locations":[{"locationName":"[parameters(''location'')]","failoverPriority":0}]}},{"type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","apiVersion":"2023-04-15","name":"[format(''{0}/{1}'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)), ''db3'')]","location":"[parameters(''location'')]","properties":{"resource":{"id":"db3"}},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.KeyVault/vaults/secrets","apiVersion":"2022-07-01","name":"[format(''{0}/{1}'', parameters(''keyVaultName''), ''connectionString'')]","location":"[parameters(''location'')]","properties":{"value":"[format(''AccountEndpoint={0};AccountKey={1}'', reference(resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))), ''2023-04-15'').documentEndpoint, listkeys(resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))), ''2023-04-15'').primaryMasterKey)]"},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)))]"]}]}},"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'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"storage","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_PRINCIPAL_ID.value]"},"principalType":{"value":"ServicePrincipal"}},"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":"6604979230694910773"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":""}},"principalId":{"type":"string","metadata":{"description":""}},"principalType":{"type":"string","metadata":{"description":""}}},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-09-01","name":"[toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","location":"[parameters(''location'')]","tags":{"aspire-resource-name":"storage"},"sku":{"name":"Standard_GRS"},"kind":"StorageV2","properties":{"accessTier":"Hot","networkAcls":{"defaultAction":"Allow"},"minimumTlsVersion":"TLS1_2","allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2022-09-01","name":"[format(''{0}/{1}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''default'')]","properties":{},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]}],"outputs":{"blobEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.blob]"},"queueEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.queue]"},"tableEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.table]"}}}},"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":{"MANAGED_IDENTITY_CLIENT_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.MANAGED_IDENTITY_CLIENT_ID.value]"},"MANAGED_IDENTITY_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.MANAGED_IDENTITY_NAME.value]"},"AZURE_LOG_ANALYTICS_WORKSPACE_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_LOG_ANALYTICS_WORKSPACE_NAME.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]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_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_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID.value]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_NAME.value]"},"AZURE_CONTAINER_APPS_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.AZURE_CONTAINER_APPS_ENVIRONMENT_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_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_CONTAINER_APPS_ENVIRONMENT_ID.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"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_APPS_ENVIRONMENT_DEFAULT_DOMAIN.value]"},"SERVICE_BINDING_KVF2EDECB5_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.SERVICE_BINDING_KVF2EDECB5_ENDPOINT.value]"},"SERVICE_BINDING_KVF2EDECB5_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.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"STORAGE_BLOBENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.blobEndpoint.value]"},"STORAGE_QUEUEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.queueEndpoint.value]"},"STORAGE_TABLEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.tableEndpoint.value]"}}}},"tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"}}' form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) - X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pY%2fLbsIwEEW%2fBa9BiltSIXZO7AAFj7EzDqI7RCkiQYnUBuWB%2bPdiolTds5sz92pG50r2RV6e8suuPBU5Ftkh%2fyHTKwFlcC6sUWvhMD%2fU5Xr3XZ5ca3loyJTQwWQAuK1lux2R4aNhiqrPqP8yMFkUSH6stP3g0uox8CAw%2fMy1l0TSCg8w4BqTEPDzy1BQq9irFLf33p5CqqlsFzWkWwptVkFIA5W%2bC8uLxgjxJjMD3Wyi%2b58EI4MuT7i8Z7qRfOFJntUy0pVC5gPKRmFWb46jEbkNyUbE%2bIzeePKsXg1ctpBmteJZ%2b6eXOj0zw8RpmJltHdNg47Qj3ThFmbIGOPMlBlYiu%2bvpFrj1ZVI81ASL0cYvZJpfzuch6bAn5%2f0v7PC1T%2b0yVhbnPUaGQShCAWjYql%2bGDBhn7mq%2fcTOLF6zj2%2b0X - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 468033 - 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=TY9da8JAEEV%2fi%2fusYKwpxbdNZoNWZ9fs7qTEN0ltMUoCbSQf4n%2bvW1nw7Z57LgxzZUVdNcfqsm%2bOdWXr06H6ZYsrk0rbpSCttsJhdeia7f6nObrV%2btCzBQtGbyNp8w6HfMLG%2fwtdt94F4WykT0mE8N2mtAOkdC4hijScIZ1mCZKYShtBarNY2s8vHUi1MdNWAd13xQxt0WKZhwqKUJbFIPsgUuW7IKh7LRJ02Qh6xZMWmnZRRh3RcHdJ2jmHJe8l8BBBE0LRKosDDqu5zOoJu43ZhzDWv1ddzucxE9xYMjO2eEZPbv4kH%2fjiLa2NIrv0mGguYxELaTXf%2bDLmkgN3R3zjMjcr%2fuDb7Q8%3d","value":[]}' - headers: - Cache-Control: - - no-cache Content-Length: - - "468033" + - "23899" Content-Type: - - application/json; charset=utf-8 - Date: - - Mon, 16 Sep 2024 18:51:53 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" - X-Ms-Request-Id: - - 59851163-ffc3-43dc-9a5b-828f75131372 - X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185153Z:59851163-ffc3-43dc-9a5b-828f75131372 - X-Msedge-Ref: - - 'Ref A: 59C26FCEE275420CA657AA58AB31B2C1 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:50Z' - status: 200 OK - code: 200 - duration: 3.468314459s - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED + - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TY9da8JAEEV%2fi%2fusYKwpxbdNZoNWZ9fs7qTEN0ltMUoCbSQf4n%2bvW1nw7Z57LgxzZUVdNcfqsm%2bOdWXr06H6ZYsrk0rbpSCttsJhdeia7f6nObrV%2btCzBQtGbyNp8w6HfMLG%2fwtdt94F4WykT0mE8N2mtAOkdC4hijScIZ1mCZKYShtBarNY2s8vHUi1MdNWAd13xQxt0WKZhwqKUJbFIPsgUuW7IKh7LRJ02Qh6xZMWmnZRRh3RcHdJ2jmHJe8l8BBBE0LRKosDDqu5zOoJu43ZhzDWv1ddzucxE9xYMjO2eEZPbv4kH%2fjiLa2NIrv0mGguYxELaTXf%2bDLmkgN3R3zjMjcr%2fuDb7Q8%3d - method: GET + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 5691 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"properties":{"templateHash":"3447098018377705335","parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"132b96b234ef0a8020e254142c71ce9a","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-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/cosmos"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/storage"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/9161cf46-272f-5c6c-9bdb-3f0f65dec990"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/a948d4e2-0e48-50f4-b912-25b9cc45567c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/df822f1f-4345-5074-b95c-1e305b3f60fb"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/deafb7ed-7da9-5fa9-8acf-c354de98bb2b"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "5691" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:55 GMT + - Mon, 04 Nov 2024 21:45:17 GMT Expires: - "-1" Pragma: @@ -578,30 +533,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - X-Ms-Ratelimit-Remaining-Subscription-Reads: + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 91bd773d-9bc9-43fd-b3fa-3c8a035e17d3 + - 25932af0-d779-431d-912c-fb49d2e6263b X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185155Z:91bd773d-9bc9-43fd-b3fa-3c8a035e17d3 + - WESTUS2:20241104T214517Z:25932af0-d779-431d-912c-fb49d2e6263b X-Msedge-Ref: - - 'Ref A: 1783FDE1DE6D45C498D524CE76644825 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:54Z' + - 'Ref A: 2D73FCC3D6B84918810737F3D75DA86B Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:15Z' status: 200 OK code: 200 - duration: 1.676687834s - - id: 9 + duration: 2.0785968s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 23113 + content_length: 23899 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-d72e96b"},"location":{"value":"eastus2"},"principalId":{"value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"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":"5559727577912177490"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention, the name of the resource group for your application will use this name, prefixed with rg-"}},"location":{"type":"string","minLength":1,"metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"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":{"location":{"value":"[parameters(''location'')]"},"tags":{"value":"[variables(''tags'')]"},"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":"3657027767394685529"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags that will be applied to all resources"}}},"variables":{"resourceToken":"[uniqueString(resourceGroup().id)]"},"resources":[{"type":"Microsoft.App/managedEnvironments/dotNetComponents","apiVersion":"2024-02-02-preview","name":"[format(''{0}/{1}'', format(''cae-{0}'', variables(''resourceToken'')), ''aspire-dashboard'')]","properties":{"componentType":"AspireDashboard"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[parameters(''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":"[parameters(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-02-02-preview","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":"[parameters(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/managedEnvironments/{0}'', format(''cae-{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.KeyVault/vaults","apiVersion":"2023-07-01","name":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","properties":{"sku":{"name":"standard","family":"A"},"tenantId":"[subscription().tenantId]","enableRbacAuthorization":true}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').clientId]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[format(''mi-{0}'', variables(''resourceToken''))]"},"MANAGED_IDENTITY_PRINCIPAL_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[format(''law-{0}'', variables(''resourceToken''))]"},"AZURE_LOG_ANALYTICS_WORKSPACE_ID":{"type":"string","value":"[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), ''2024-02-02-preview'').defaultDomain]"},"SERVICE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').vaultUri]"},"SERVICE_BINDING_KVF2EDECB5_NAME":{"type":"string","value":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"cosmos","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"keyVaultName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"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":"9561877192170741248"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":""}},"keyVaultName":{"type":"string","metadata":{"description":""}}},"resources":[{"type":"Microsoft.DocumentDB/databaseAccounts","apiVersion":"2023-04-15","name":"[toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))]","location":"[parameters(''location'')]","tags":{"aspire-resource-name":"cosmos"},"kind":"GlobalDocumentDB","properties":{"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session"},"locations":[{"locationName":"[parameters(''location'')]","failoverPriority":0}]}},{"type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","apiVersion":"2023-04-15","name":"[format(''{0}/{1}'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)), ''db3'')]","location":"[parameters(''location'')]","properties":{"resource":{"id":"db3"}},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.KeyVault/vaults/secrets","apiVersion":"2022-07-01","name":"[format(''{0}/{1}'', parameters(''keyVaultName''), ''connectionString'')]","location":"[parameters(''location'')]","properties":{"value":"[format(''AccountEndpoint={0};AccountKey={1}'', reference(resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))), ''2023-04-15'').documentEndpoint, listkeys(resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))), ''2023-04-15'').primaryMasterKey)]"},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)))]"]}]}},"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'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"storage","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_PRINCIPAL_ID.value]"},"principalType":{"value":"ServicePrincipal"}},"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":"6604979230694910773"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":""}},"principalId":{"type":"string","metadata":{"description":""}},"principalType":{"type":"string","metadata":{"description":""}}},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-09-01","name":"[toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","location":"[parameters(''location'')]","tags":{"aspire-resource-name":"storage"},"sku":{"name":"Standard_GRS"},"kind":"StorageV2","properties":{"accessTier":"Hot","networkAcls":{"defaultAction":"Allow"},"minimumTlsVersion":"TLS1_2","allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2022-09-01","name":"[format(''{0}/{1}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''default'')]","properties":{},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]}],"outputs":{"blobEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.blob]"},"queueEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.queue]"},"tableEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.table]"}}}},"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":{"MANAGED_IDENTITY_CLIENT_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.MANAGED_IDENTITY_CLIENT_ID.value]"},"MANAGED_IDENTITY_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.MANAGED_IDENTITY_NAME.value]"},"AZURE_LOG_ANALYTICS_WORKSPACE_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_LOG_ANALYTICS_WORKSPACE_NAME.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]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_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_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID.value]"},"AZURE_CONTAINER_APPS_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.AZURE_CONTAINER_APPS_ENVIRONMENT_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_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_CONTAINER_APPS_ENVIRONMENT_ID.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"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_APPS_ENVIRONMENT_DEFAULT_DOMAIN.value]"},"SERVICE_BINDING_KVF2EDECB5_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.SERVICE_BINDING_KVF2EDECB5_ENDPOINT.value]"},"STORAGE_BLOBENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.blobEndpoint.value]"},"STORAGE_QUEUEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.queueEndpoint.value]"},"STORAGE_TABLEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.tableEndpoint.value]"}}}},"tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w9954a4"},"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":"3447098018377705335"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention, the name of the resource group for your application will use this name, prefixed with rg-"}},"location":{"type":"string","minLength":1,"metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"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":{"location":{"value":"[parameters(''location'')]"},"tags":{"value":"[variables(''tags'')]"},"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":"3054607656997567302"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags that will be applied to all resources"}}},"variables":{"resourceToken":"[uniqueString(resourceGroup().id)]"},"resources":[{"type":"Microsoft.App/managedEnvironments/dotNetComponents","apiVersion":"2024-02-02-preview","name":"[format(''{0}/{1}'', format(''cae-{0}'', variables(''resourceToken'')), ''aspire-dashboard'')]","properties":{"componentType":"AspireDashboard"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[parameters(''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":"[parameters(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-02-02-preview","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":"[parameters(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/managedEnvironments/{0}'', format(''cae-{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.KeyVault/vaults","apiVersion":"2023-07-01","name":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","properties":{"sku":{"name":"standard","family":"A"},"tenantId":"[subscription().tenantId]","enableRbacAuthorization":true}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').clientId]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[format(''mi-{0}'', variables(''resourceToken''))]"},"MANAGED_IDENTITY_PRINCIPAL_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[format(''law-{0}'', variables(''resourceToken''))]"},"AZURE_LOG_ANALYTICS_WORKSPACE_ID":{"type":"string","value":"[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), ''2024-02-02-preview'').defaultDomain]"},"SERVICE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').vaultUri]"},"SERVICE_BINDING_KVF2EDECB5_NAME":{"type":"string","value":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"cosmos","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"keyVaultName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"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":"9561877192170741248"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":""}},"keyVaultName":{"type":"string","metadata":{"description":""}}},"resources":[{"type":"Microsoft.DocumentDB/databaseAccounts","apiVersion":"2023-04-15","name":"[toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))]","location":"[parameters(''location'')]","tags":{"aspire-resource-name":"cosmos"},"kind":"GlobalDocumentDB","properties":{"databaseAccountOfferType":"Standard","consistencyPolicy":{"defaultConsistencyLevel":"Session"},"locations":[{"locationName":"[parameters(''location'')]","failoverPriority":0}]}},{"type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","apiVersion":"2023-04-15","name":"[format(''{0}/{1}'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)), ''db3'')]","location":"[parameters(''location'')]","properties":{"resource":{"id":"db3"}},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.KeyVault/vaults/secrets","apiVersion":"2022-07-01","name":"[format(''{0}/{1}'', parameters(''keyVaultName''), ''connectionString'')]","location":"[parameters(''location'')]","properties":{"value":"[format(''AccountEndpoint={0};AccountKey={1}'', reference(resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))), ''2023-04-15'').documentEndpoint, listkeys(resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24))), ''2023-04-15'').primaryMasterKey)]"},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', toLower(take(format(''cosmos{0}'', uniqueString(resourceGroup().id)), 24)))]"]}]}},"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'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"storage","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_PRINCIPAL_ID.value]"},"principalType":{"value":"ServicePrincipal"}},"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":"6604979230694910773"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":""}},"principalId":{"type":"string","metadata":{"description":""}},"principalType":{"type":"string","metadata":{"description":""}}},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-09-01","name":"[toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","location":"[parameters(''location'')]","tags":{"aspire-resource-name":"storage"},"sku":{"name":"Standard_GRS"},"kind":"StorageV2","properties":{"accessTier":"Hot","networkAcls":{"defaultAction":"Allow"},"minimumTlsVersion":"TLS1_2","allowSharedKeyAccess":false}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2022-09-01","name":"[format(''{0}/{1}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''default'')]","properties":{},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88''))]","properties":{"roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88'')]","principalId":"[parameters(''principalId'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)))]"]}],"outputs":{"blobEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.blob]"},"queueEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.queue]"},"tableEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', toLower(take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))), ''2022-09-01'').primaryEndpoints.table]"}}}},"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":{"MANAGED_IDENTITY_CLIENT_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.MANAGED_IDENTITY_CLIENT_ID.value]"},"MANAGED_IDENTITY_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.MANAGED_IDENTITY_NAME.value]"},"AZURE_LOG_ANALYTICS_WORKSPACE_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_LOG_ANALYTICS_WORKSPACE_NAME.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]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_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_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID.value]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_NAME.value]"},"AZURE_CONTAINER_APPS_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.AZURE_CONTAINER_APPS_ENVIRONMENT_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_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_CONTAINER_APPS_ENVIRONMENT_ID.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"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_APPS_ENVIRONMENT_DEFAULT_DOMAIN.value]"},"SERVICE_BINDING_KVF2EDECB5_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.SERVICE_BINDING_KVF2EDECB5_ENDPOINT.value]"},"SERVICE_BINDING_KVF2EDECB5_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.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"STORAGE_BLOBENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.blobEndpoint.value]"},"STORAGE_QUEUEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.queueEndpoint.value]"},"STORAGE_TABLEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.tableEndpoint.value]"}}}},"tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"}}' form: {} headers: Accept: @@ -611,14 +568,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "23113" + - "23899" Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -628,10 +585,10 @@ interactions: trailer: {} content_length: 3177 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"},"properties":{"templateHash":"5559727577912177490","parameters":{"environmentName":{"type":"String","value":"azdtest-d72e96b"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-09-16T18:51:58.1814975Z","duration":"PT0.0002816S","correlationId":"58d4b3a80c514c22f5a7d71f5e02c407","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-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"properties":{"templateHash":"3447098018377705335","parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T21:45:20.1102059Z","duration":"PT0.0007227S","correlationId":"132b96b234ef0a8020e254142c71ce9a","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-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656/operationStatuses/08584750941693621264?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618/operationStatuses/08584708501672914429?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -639,7 +596,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:51:58 GMT + - Mon, 04 Nov 2024 21:45:20 GMT Expires: - "-1" Pragma: @@ -651,21 +608,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - c307484a-b972-480a-962f-aabe7652d2e1 + - f1d769a8-7a81-46bc-b82b-04e591e3f182 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185159Z:c307484a-b972-480a-962f-aabe7652d2e1 + - WESTUS2:20241104T214521Z:f1d769a8-7a81-46bc-b82b-04e591e3f182 X-Msedge-Ref: - - 'Ref A: EF3DC146555A453FB8A76C283BE7027D Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:51:55Z' + - 'Ref A: D055BF08CA2644DEAE35B3906B70E4C6 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:45:17Z' status: 201 Created code: 201 - duration: 3.311650792s - - id: 10 + duration: 3.2160285s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -684,10 +643,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656/operationStatuses/08584750941693621264?api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618/operationStatuses/08584708501672914429?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -706,7 +665,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:03 GMT + - Mon, 04 Nov 2024 21:51:24 GMT Expires: - "-1" Pragma: @@ -718,19 +677,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 4051956a-c0e6-448d-8d29-1ee93069379d + - 97d900e0-4a4e-4c67-92fc-9499567ee17f X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185704Z:4051956a-c0e6-448d-8d29-1ee93069379d + - WESTUS2:20241104T215124Z:97d900e0-4a4e-4c67-92fc-9499567ee17f X-Msedge-Ref: - - 'Ref A: 3BAFCED5CB044619A0D248B815945E8A Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:57:04Z' + - 'Ref A: 37E464C44FAF463C8EBCED8DFBC5272A Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:51:24Z' status: 200 OK code: 200 - duration: 1.640437334s - - id: 11 + duration: 236.599ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -749,10 +710,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -760,18 +721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8320 + content_length: 8489 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"},"properties":{"templateHash":"5559727577912177490","parameters":{"environmentName":{"type":"String","value":"azdtest-d72e96b"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-16T18:56:56.0598662Z","duration":"PT4M57.8786503S","correlationId":"58d4b3a80c514c22f5a7d71f5e02c407","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-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-yvabyidqgqy7c"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-yvabyidqgqy7c"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acryvabyidqgqy7c.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentleriver-3807de47.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/cd9c9d2a-ef58-5609-b908-349c9673f6a9"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/001c1967-7940-5990-9e00-faa32de268ab"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/aa6c13d1-05a0-5e5b-8b33-019edd1b131f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/ecad5ca3-d68f-5167-9220-28f51024cad2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/55c16f02-5bfb-534b-a09c-765055b9acd3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/88dbbfc0-6737-5b5b-ae3f-d5cc255aa90c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/b2717167-1122-5c14-aac3-2a4108a8977a"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"properties":{"templateHash":"3447098018377705335","parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T21:51:16.3059183Z","duration":"PT5M56.1964351S","correlationId":"132b96b234ef0a8020e254142c71ce9a","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-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"54080441-e9fe-42f9-809c-cf1940107c35"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-7bjev4wfxb2j6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr7bjev4wfxb2j6.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"delightfulglacier-74532064.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb57bjev4wfxb2j6"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/a948d4e2-0e48-50f4-b912-25b9cc45567c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/9161cf46-272f-5c6c-9bdb-3f0f65dec990"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/deafb7ed-7da9-5fa9-8acf-c354de98bb2b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/df822f1f-4345-5074-b95c-1e305b3f60fb"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/3b9171bf-acb6-5a83-a1c3-0ba968661721"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/4bae44bb-82f3-595f-91c0-c5833b74eae8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/b7344427-9598-5996-956a-037124456b26"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "8320" + - "8489" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:04 GMT + - Mon, 04 Nov 2024 21:51:24 GMT Expires: - "-1" Pragma: @@ -783,19 +744,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 2c391e6f-338a-412a-9d08-71e9c96ecb8c + - 886a57ab-c7a9-4e94-b6da-84b996ee6dbb X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185704Z:2c391e6f-338a-412a-9d08-71e9c96ecb8c + - WESTUS2:20241104T215125Z:886a57ab-c7a9-4e94-b6da-84b996ee6dbb X-Msedge-Ref: - - 'Ref A: 9A034EE9DB724620BB27C1556D8EB1A0 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:57:04Z' + - 'Ref A: A1F1F03E6ADC43DF85A7D94DCBEEC7BB Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:51:24Z' status: 200 OK code: 200 - duration: 233.808042ms - - id: 12 + duration: 404.5862ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -816,10 +779,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -829,7 +792,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -838,7 +801,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:04 GMT + - Mon, 04 Nov 2024 21:51:24 GMT Expires: - "-1" Pragma: @@ -850,19 +813,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 75c1e015-7fea-471b-8738-940758244719 + - d5b5af33-2b96-4166-b7c2-81237ca41502 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185705Z:75c1e015-7fea-471b-8738-940758244719 + - WESTUS2:20241104T215125Z:d5b5af33-2b96-4166-b7c2-81237ca41502 X-Msedge-Ref: - - 'Ref A: 1016B9CA8BA34ADCA1529C78BF543741 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:57:04Z' + - 'Ref A: 687DB7F86E914CFB8D8965CFF0CBBEAB Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:51:25Z' status: 200 OK code: 200 - duration: 62.399ms - - id: 13 + duration: 43.6471ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -883,10 +848,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -896,7 +861,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -905,7 +870,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:04 GMT + - Mon, 04 Nov 2024 21:51:26 GMT Expires: - "-1" Pragma: @@ -917,19 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 66219d1f-abba-424c-bb9d-02fd02bdafd6 + - d0d2efac-f906-41be-a20d-727b862e2d4a X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185705Z:66219d1f-abba-424c-bb9d-02fd02bdafd6 + - WESTUS2:20241104T215127Z:d0d2efac-f906-41be-a20d-727b862e2d4a X-Msedge-Ref: - - 'Ref A: 70E8F549C35F4DD99F256613E31320DA Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:57:05Z' + - 'Ref A: AE98ED3B923649EDA4B788D53FE3E353 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:51:27Z' status: 200 OK code: 200 - duration: 54.975625ms - - id: 14 + duration: 78.9333ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -938,17 +905,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acryvabyidqgqy7c.azurecr.io + host: acr7bjev4wfxb2j6.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acryvabyidqgqy7c.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acr7bjev4wfxb2j6.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acryvabyidqgqy7c.azurecr.io + - acr7bjev4wfxb2j6.azurecr.io headers: Accept-Encoding: - gzip @@ -957,10 +924,10 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://acryvabyidqgqy7c.azurecr.io:443/oauth2/exchange + - 132b96b234ef0a8020e254142c71ce9a + url: https://acr7bjev4wfxb2j6.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -978,30 +945,30 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:06 GMT + - Mon, 04 Nov 2024 21:51:27 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Calls-Per-Second: - "166.65" status: 200 OK code: 200 - duration: 589.53ms - - id: 15 + duration: 431.6587ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1528 + content_length: 1530 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":true,"external":false,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","server":"acryvabyidqgqy7c.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/apiservice-azdtest-d72e96b:azd-deploy-1726512656","name":"apiservice"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":true,"external":false,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","server":"acr7bjev4wfxb2j6.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/apiservice-azdtest-w9954a4:azd-deploy-1730756618","name":"apiservice"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}' form: {} headers: Accept: @@ -1011,14 +978,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1528" + - "1530" Content-Type: - application/json User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -1026,22 +993,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3754 + content_length: 3901 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:57:43.7680204Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:57:43.7680204Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/apiservice-azdtest-d72e96b:azd-deploy-1726512656","imageType":"CloudBuild","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:51:49.4167639Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:51:49.4167639Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/apiservice-azdtest-w9954a4:azd-deploy-1730756618","imageType":"CloudBuild","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/68f8109b-b2b0-4ceb-a8b8-0014bd3d4b01?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638621098649399036&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=79-CB_Ui7qPJFDRSrgQ6XtCfjTNySXOMNHb6csxJYkJJZ9f0f3q4MPlhYaR3Hib8AiFCJq1evpLo3TM-MgJHQV7ufbnFUG-62UaPOmNyYa0yZDEBnwz3_mYrs9KEPFmaYtdjb5XY4CUQB4LCn2mvOv9oLkC_RNDSooXRiPnE817xMsH3w0kNZUYAlqIAo6R6fhOYY7PpVQo1JdmTW2RJM4MIAnUq-wcZiytW-eIVDOMCs334jzGt8EUF2RrRv4Y5M28tlUpHpJy_73oOIJA9CXQbPixIplFnQmb4d58-4KJ_cW3PuZEeEHguVHc08MRKwN9n48CMZC09p0AByZw_yA&h=tWKdaHf-HDID4qhz-9OYUDhToxoG4X9s09Tf0oU1rnY + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/1b7cc5f5-ff3c-4342-9881-a197125f0b56?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638663539106354792&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=ipcyxVMdlqY0E74UqwfJmz0_coZAo1ceCjDY_8FKyo_SefFZBrHQygzzPbWaJkg48MEua3ASv7373BIkMc7eEIz2pjvITdx7t57kyQTPQ5gluhnw5chk9xsd8EbMR5GQJw3Ebpo-8grOQsjRN_XR1VveSDh-eHuZHPBa0TXF2pyb9n4vMuUkUDDU6nxdxWZqUrJU5bDKV1kxSTful4em_waNJci84VIxF1pNN8DP16VHSrRUDg2dfmtLNU8ic-a3b4OA8XfYwSvew3rM6Z1cpe5r1NQWQCJawQy_ZRvR4STLfdX3fIYMdSj2TmPQn0ZcYYDwvqAmxsxOliqemAMa4A&h=STDRP3XIhh5WpiHlkWk1j3F2VnQx_fBgqW-StzVJud0 Cache-Control: - no-cache Content-Length: - - "3754" + - "3901" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:44 GMT + - Mon, 04 Nov 2024 21:51:50 GMT Expires: - "-1" Pragma: @@ -1057,21 +1024,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - e1605fd4-bf0d-450d-a525-d1fea456a79b + - 4f8ad2fe-debb-45de-88f4-f1b8fcfe57df X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185744Z:e1605fd4-bf0d-450d-a525-d1fea456a79b + - WESTUS2:20241104T215150Z:4f8ad2fe-debb-45de-88f4-f1b8fcfe57df X-Msedge-Ref: - - 'Ref A: 128EF6CE457647B5ABFB1FD3666BE318 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:57:42Z' + - 'Ref A: 8BE9490D0D574B58AA02C67058F92EE8 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:51:48Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 2.652056417s - - id: 16 + duration: 2.1226286s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1090,10 +1057,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/68f8109b-b2b0-4ceb-a8b8-0014bd3d4b01?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=tWKdaHf-HDID4qhz-9OYUDhToxoG4X9s09Tf0oU1rnY&s=79-CB_Ui7qPJFDRSrgQ6XtCfjTNySXOMNHb6csxJYkJJZ9f0f3q4MPlhYaR3Hib8AiFCJq1evpLo3TM-MgJHQV7ufbnFUG-62UaPOmNyYa0yZDEBnwz3_mYrs9KEPFmaYtdjb5XY4CUQB4LCn2mvOv9oLkC_RNDSooXRiPnE817xMsH3w0kNZUYAlqIAo6R6fhOYY7PpVQo1JdmTW2RJM4MIAnUq-wcZiytW-eIVDOMCs334jzGt8EUF2RrRv4Y5M28tlUpHpJy_73oOIJA9CXQbPixIplFnQmb4d58-4KJ_cW3PuZEeEHguVHc08MRKwN9n48CMZC09p0AByZw_yA&t=638621098649399036 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/1b7cc5f5-ff3c-4342-9881-a197125f0b56?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=STDRP3XIhh5WpiHlkWk1j3F2VnQx_fBgqW-StzVJud0&s=ipcyxVMdlqY0E74UqwfJmz0_coZAo1ceCjDY_8FKyo_SefFZBrHQygzzPbWaJkg48MEua3ASv7373BIkMc7eEIz2pjvITdx7t57kyQTPQ5gluhnw5chk9xsd8EbMR5GQJw3Ebpo-8grOQsjRN_XR1VveSDh-eHuZHPBa0TXF2pyb9n4vMuUkUDDU6nxdxWZqUrJU5bDKV1kxSTful4em_waNJci84VIxF1pNN8DP16VHSrRUDg2dfmtLNU8ic-a3b4OA8XfYwSvew3rM6Z1cpe5r1NQWQCJawQy_ZRvR4STLfdX3fIYMdSj2TmPQn0ZcYYDwvqAmxsxOliqemAMa4A&t=638663539106354792 method: GET response: proto: HTTP/2.0 @@ -1103,10 +1070,10 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c34cc02f-f378-4b88-a694-13fabf1fe50a","name":"c34cc02f-f378-4b88-a694-13fabf1fe50a","status":"Succeeded","startTime":"2024-09-16T18:57:44.4577402"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/1b7cc5f5-ff3c-4342-9881-a197125f0b56","name":"1b7cc5f5-ff3c-4342-9881-a197125f0b56","status":"Succeeded","startTime":"2024-11-04T21:51:50.1712245"}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -1114,7 +1081,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:57:59 GMT + - Mon, 04 Nov 2024 21:52:05 GMT Expires: - "-1" Pragma: @@ -1128,21 +1095,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 25965381-73f3-4630-9c31-abe604ee2f97 + - 367833d4-bcc6-4097-9cbf-522dead5c3b8 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185800Z:25965381-73f3-4630-9c31-abe604ee2f97 + - WESTUS2:20241104T215206Z:367833d4-bcc6-4097-9cbf-522dead5c3b8 X-Msedge-Ref: - - 'Ref A: CFA06E03D82D4DCEA306B910F9932C96 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:00Z' + - 'Ref A: D616015A1DBC4002B6D0AE836EDCB80E Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:05Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 448.07625ms - - id: 17 + duration: 459.0254ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1161,10 +1130,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -1172,20 +1141,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4356 + content_length: 4515 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:57:43.7680204","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:57:43.7680204"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"latestRevisionName":"apiservice--cjspvo0","latestReadyRevisionName":"apiservice--cjspvo0","latestRevisionFqdn":"apiservice--cjspvo0.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/apiservice-azdtest-d72e96b:azd-deploy-1726512656","imageType":"ContainerImage","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-d72e96b/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:51:49.4167639","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:51:49.4167639"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"apiservice--wnfh6p6","latestReadyRevisionName":"apiservice--wnfh6p6","latestRevisionFqdn":"apiservice--wnfh6p6.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/apiservice-azdtest-w9954a4:azd-deploy-1730756618","imageType":"ContainerImage","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-w9954a4/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "4356" + - "4515" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:00 GMT + - Mon, 04 Nov 2024 21:52:05 GMT Expires: - "-1" Pragma: @@ -1199,21 +1168,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 7f2ebeeb-c1f3-4116-9b75-00883a5a198b + - 73f505f3-1da5-40e5-8bd7-923ee9cc0e7d X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185800Z:7f2ebeeb-c1f3-4116-9b75-00883a5a198b + - WESTUS2:20241104T215206Z:73f505f3-1da5-40e5-8bd7-923ee9cc0e7d X-Msedge-Ref: - - 'Ref A: 29BAB89447024BAFA5ADF36DE87DAE6C Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:00Z' + - 'Ref A: EA74987B38574284B2BBECEDEACC06A4 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:06Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 493.6855ms - - id: 18 + duration: 442.2638ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1234,10 +1205,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1245,20 +1216,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4220 + content_length: 4379 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:57:43.7680204","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:57:43.7680204"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","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","20.161.149.115"],"latestRevisionName":"apiservice--cjspvo0","latestReadyRevisionName":"apiservice--cjspvo0","latestRevisionFqdn":"apiservice--cjspvo0.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/apiservice-azdtest-d72e96b:azd-deploy-1726512656","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-d72e96b/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:51:49.4167639","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:51:49.4167639"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"apiservice--wnfh6p6","latestReadyRevisionName":"apiservice--wnfh6p6","latestRevisionFqdn":"apiservice--wnfh6p6.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/apiservice-azdtest-w9954a4:azd-deploy-1730756618","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-w9954a4/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "4220" + - "4379" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:00 GMT + - Mon, 04 Nov 2024 21:52:06 GMT Expires: - "-1" Pragma: @@ -1272,21 +1243,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 67b9f4f6-f68b-43ab-8266-73b9abfd6b31 + - fb7197b6-ad09-44e5-9573-29b081e61685 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185801Z:67b9f4f6-f68b-43ab-8266-73b9abfd6b31 + - WESTUS2:20241104T215207Z:fb7197b6-ad09-44e5-9573-29b081e61685 X-Msedge-Ref: - - 'Ref A: D2BAF4DE4CA044B7AC7984D4CEBE6DF1 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:00Z' + - 'Ref A: 33C0DAF2B3BF4E6086BB3ED12AEDA857 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:06Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 495.286708ms - - id: 19 + duration: 520.1236ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1307,10 +1280,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1320,7 +1293,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1329,7 +1302,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:00 GMT + - Mon, 04 Nov 2024 21:52:06 GMT Expires: - "-1" Pragma: @@ -1341,19 +1314,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - f12f9b02-9603-4184-ae15-8d4717504b03 + - f8d5d734-6d0b-491a-94da-689178780aa7 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185801Z:f12f9b02-9603-4184-ae15-8d4717504b03 + - WESTUS2:20241104T215207Z:f8d5d734-6d0b-491a-94da-689178780aa7 X-Msedge-Ref: - - 'Ref A: F5FCCDDEC7F045DAAD613EC7059404BD Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:01Z' + - 'Ref A: 395C1B71DDD546AFA15D024DB7B27EA5 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:07Z' status: 200 OK code: 200 - duration: 58.725792ms - - id: 20 + duration: 69.2123ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1362,17 +1337,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acryvabyidqgqy7c.azurecr.io + host: acr7bjev4wfxb2j6.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acryvabyidqgqy7c.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acr7bjev4wfxb2j6.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acryvabyidqgqy7c.azurecr.io + - acr7bjev4wfxb2j6.azurecr.io headers: Accept-Encoding: - gzip @@ -1381,10 +1356,10 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://acryvabyidqgqy7c.azurecr.io:443/oauth2/exchange + - 132b96b234ef0a8020e254142c71ce9a + url: https://acr7bjev4wfxb2j6.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -1402,19 +1377,19 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:01 GMT + - Mon, 04 Nov 2024 21:52:07 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.65" + - "166.6" status: 200 OK code: 200 - duration: 86.35325ms - - id: 21 + duration: 65.8974ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1425,7 +1400,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":false,"targetPort":6379,"transport":"tcp"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","server":"acryvabyidqgqy7c.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}],"image":"docker.io/library/redis:7.4","name":"pubsub"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":false,"targetPort":6379,"transport":"tcp"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","server":"acr7bjev4wfxb2j6.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"}],"image":"docker.io/library/redis:7.4","name":"pubsub"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}' form: {} headers: Accept: @@ -1439,10 +1414,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -1450,22 +1425,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3334 + content_length: 3481 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:03.088776Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:03.088776Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":6379,"exposedPort":null,"transport":"Tcp","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"CloudBuild","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:08.4778667Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:08.4778667Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":6379,"exposedPort":null,"transport":"Tcp","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"CloudBuild","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d0317bbe-41c7-492a-b476-d5b3c7c318c7?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638621098843700422&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=bal7t6L00abiKKtOLZyPK0FakxcLiE62Dgr91K0P5PGxXxZuwta2o7ntul33lC6LtakKuO0WyaXSuQIQJf2W1t1FF_qUkrbd4esjbr0md2q7U7SFGHuxO8RN4ksmeK7WyPxO5JO-BZCg-rh-NCaAEgpThQIdeoSuxjKRg5P3mvpEIU0rU4L2UKBrYdZ_JBGATWaq4c12QK9CUgPdaJExQhBqqj9AheeLWN75GNIQXleq0RzB_UXLBza6HDivhUijYZyxh1RJzBawW1ynEk9HPCRZWEDJX3yyPzdkMg4QqK-wINai0LFq0vURPFjoOQnmog2P2AzU697Zn2MUhYob8g&h=IzvgC9sUQiZMzwqSA6QECNb_eB0AqobW2ni79NMpHjs + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/04e11a6e-2342-440a-87cd-591d368281be?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638663539295403793&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=E1tldtas0XV8fZWCy71IXmtVWmBiBG2SyvHzcJ16Q_1RdJuVjwTgz0fvhXzabdaaRGtxoIPY79MSF8bUQ9vL-YYFXWmrTrkHFsWlXqH6Cbx38JZytupHyd4RDwnRhtNn-rn1GDC5_ud4jxohvSzO5BrrFUxXOQCg8vkbQ-Q2ckzw_xZP1dCagCiAod2JLkXe0LxyAFQlkR9UcKTFY1uSBcTs_ckFpNQdD_xI4lWRFpkTWCxoHosVX_Ga4EbjbnGq9q2SkYAYPMnMdP6pUsA4uMkkoynE7wC0WHs-O9M3JZnB4kn5VHjY0iWlLQzAwelH4aRYR8DHzNqETeY183j7ig&h=K4tbSZ8APlkh-sYF2MxYANtKDK4p9S8rLmAqB2-Yfj0 Cache-Control: - no-cache Content-Length: - - "3334" + - "3481" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:03 GMT + - Mon, 04 Nov 2024 21:52:08 GMT Expires: - "-1" Pragma: @@ -1481,21 +1456,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - 6b8974f8-d073-4b1b-86d3-1b1d2327a81d + - 76a5f2fc-a835-4fa2-9814-88d702318800 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185804Z:6b8974f8-d073-4b1b-86d3-1b1d2327a81d + - WESTUS2:20241104T215209Z:76a5f2fc-a835-4fa2-9814-88d702318800 X-Msedge-Ref: - - 'Ref A: 6FDE22428AC84E328CC7E8B8CA273313 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:01Z' + - 'Ref A: D17996CB3AEB40628F213ACD8599CD3B Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:07Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 2.725539375s - - id: 22 + duration: 2.2830752s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1514,10 +1489,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d0317bbe-41c7-492a-b476-d5b3c7c318c7?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=IzvgC9sUQiZMzwqSA6QECNb_eB0AqobW2ni79NMpHjs&s=bal7t6L00abiKKtOLZyPK0FakxcLiE62Dgr91K0P5PGxXxZuwta2o7ntul33lC6LtakKuO0WyaXSuQIQJf2W1t1FF_qUkrbd4esjbr0md2q7U7SFGHuxO8RN4ksmeK7WyPxO5JO-BZCg-rh-NCaAEgpThQIdeoSuxjKRg5P3mvpEIU0rU4L2UKBrYdZ_JBGATWaq4c12QK9CUgPdaJExQhBqqj9AheeLWN75GNIQXleq0RzB_UXLBza6HDivhUijYZyxh1RJzBawW1ynEk9HPCRZWEDJX3yyPzdkMg4QqK-wINai0LFq0vURPFjoOQnmog2P2AzU697Zn2MUhYob8g&t=638621098843700422 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/04e11a6e-2342-440a-87cd-591d368281be?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=K4tbSZ8APlkh-sYF2MxYANtKDK4p9S8rLmAqB2-Yfj0&s=E1tldtas0XV8fZWCy71IXmtVWmBiBG2SyvHzcJ16Q_1RdJuVjwTgz0fvhXzabdaaRGtxoIPY79MSF8bUQ9vL-YYFXWmrTrkHFsWlXqH6Cbx38JZytupHyd4RDwnRhtNn-rn1GDC5_ud4jxohvSzO5BrrFUxXOQCg8vkbQ-Q2ckzw_xZP1dCagCiAod2JLkXe0LxyAFQlkR9UcKTFY1uSBcTs_ckFpNQdD_xI4lWRFpkTWCxoHosVX_Ga4EbjbnGq9q2SkYAYPMnMdP6pUsA4uMkkoynE7wC0WHs-O9M3JZnB4kn5VHjY0iWlLQzAwelH4aRYR8DHzNqETeY183j7ig&t=638663539295403793 method: GET response: proto: HTTP/2.0 @@ -1527,10 +1502,10 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/15c202e1-0b85-4279-8efe-a079b47a3698","name":"15c202e1-0b85-4279-8efe-a079b47a3698","status":"Succeeded","startTime":"2024-09-16T18:58:03.9532408"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/04e11a6e-2342-440a-87cd-591d368281be","name":"04e11a6e-2342-440a-87cd-591d368281be","status":"Succeeded","startTime":"2024-11-04T21:52:09.0748291"}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -1538,7 +1513,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:19 GMT + - Mon, 04 Nov 2024 21:52:24 GMT Expires: - "-1" Pragma: @@ -1552,21 +1527,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 0c6a13c9-01be-4c4a-8d9f-28ac058b73c8 + - 5ee5a58c-518c-4129-933a-8bcb7a81e4f7 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185819Z:0c6a13c9-01be-4c4a-8d9f-28ac058b73c8 + - WESTUS2:20241104T215224Z:5ee5a58c-518c-4129-933a-8bcb7a81e4f7 X-Msedge-Ref: - - 'Ref A: 8A3B3B75666B4DB695F8E22429E0D84F Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:19Z' + - 'Ref A: 592AFAB78DA6488F9F05C3F42A63B8E5 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:24Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 446.372125ms - - id: 23 + duration: 367.5022ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1585,10 +1562,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -1596,20 +1573,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3916 + content_length: 4075 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:03.088776","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:03.088776"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"latestRevisionName":"pubsub--i6pssax","latestReadyRevisionName":"pubsub--i6pssax","latestRevisionFqdn":"pubsub--i6pssax.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"ContainerImage","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}],"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-d72e96b/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:08.4778667","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:08.4778667"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"pubsub--qw307t6","latestReadyRevisionName":"pubsub--qw307t6","latestRevisionFqdn":"pubsub--qw307t6.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"ContainerImage","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"}],"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-w9954a4/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3916" + - "4075" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:19 GMT + - Mon, 04 Nov 2024 21:52:25 GMT Expires: - "-1" Pragma: @@ -1623,21 +1600,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 82f40248-6109-4550-a21f-1d7a98b08372 + - fcdcf782-f313-434d-8b02-4c8dd5af87c6 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185820Z:82f40248-6109-4550-a21f-1d7a98b08372 + - WESTUS2:20241104T215225Z:fcdcf782-f313-434d-8b02-4c8dd5af87c6 X-Msedge-Ref: - - 'Ref A: C5F9AC8B91804029B7E03D7AB9E0B8BE Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:19Z' + - 'Ref A: 5F6BAFAC9E0B490A98411AAF52B1EAE5 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:24Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 423.121833ms - - id: 24 + duration: 866.5262ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1658,10 +1637,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/pubsub?api-version=2023-11-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/pubsub?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1669,20 +1648,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3780 + content_length: 3939 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:03.088776","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:03.088776"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","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","20.161.149.115"],"latestRevisionName":"pubsub--i6pssax","latestReadyRevisionName":"pubsub--i6pssax","latestRevisionFqdn":"pubsub--i6pssax.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}],"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-d72e96b/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:08.4778667","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:08.4778667"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"pubsub--qw307t6","latestReadyRevisionName":"pubsub--qw307t6","latestRevisionFqdn":"pubsub--qw307t6.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"}],"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-w9954a4/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3780" + - "3939" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:20 GMT + - Mon, 04 Nov 2024 21:52:25 GMT Expires: - "-1" Pragma: @@ -1696,21 +1675,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 95bbb155-33ef-4601-a23f-fcd1ccc1a4e7 + - 8e6f5f58-8951-4739-8a4a-40453bdb91d5 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185820Z:95bbb155-33ef-4601-a23f-fcd1ccc1a4e7 + - WESTUS2:20241104T215226Z:8e6f5f58-8951-4739-8a4a-40453bdb91d5 X-Msedge-Ref: - - 'Ref A: 02EFA07705B546F5BB14C39926A77266 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:20Z' + - 'Ref A: 67A82ED2A6764A3E9F60B4FE02B2F09D Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:25Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 486.585375ms - - id: 25 + duration: 435.5355ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1731,10 +1712,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1725,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1753,7 +1734,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:20 GMT + - Mon, 04 Nov 2024 21:52:25 GMT Expires: - "-1" Pragma: @@ -1765,19 +1746,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1098" X-Ms-Request-Id: - - a85379ad-cd23-475c-9b33-3ad6b8b074e3 + - 4cc1e837-d75e-4852-930a-df0681e514de X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185820Z:a85379ad-cd23-475c-9b33-3ad6b8b074e3 + - WESTUS2:20241104T215226Z:4cc1e837-d75e-4852-930a-df0681e514de X-Msedge-Ref: - - 'Ref A: 4E2CBBE26E9446C986404BF480BC75BB Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:20Z' + - 'Ref A: 03EFBD8E8C69473585E2CDB372138947 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:26Z' status: 200 OK code: 200 - duration: 88.548667ms - - id: 26 + duration: 42.8453ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1786,17 +1769,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acryvabyidqgqy7c.azurecr.io + host: acr7bjev4wfxb2j6.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acryvabyidqgqy7c.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acr7bjev4wfxb2j6.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acryvabyidqgqy7c.azurecr.io + - acr7bjev4wfxb2j6.azurecr.io headers: Accept-Encoding: - gzip @@ -1805,10 +1788,10 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://acryvabyidqgqy7c.azurecr.io:443/oauth2/exchange + - 132b96b234ef0a8020e254142c71ce9a + url: https://acr7bjev4wfxb2j6.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -1826,30 +1809,30 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:21 GMT + - Mon, 04 Nov 2024 21:52:26 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.633333" + - "166.6" status: 200 OK code: 200 - duration: 149.798167ms - - id: 27 + duration: 66.6229ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2872 + content_length: 2886 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":true,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","server":"acryvabyidqgqy7c.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"secrets":[{"name":"connectionstrings--markdown","value":"https://storageyvabyidqgqy7c.blob.core.windows.net/"},{"name":"connectionstrings--messages","value":"https://storageyvabyidqgqy7c.queue.core.windows.net/"},{"name":"connectionstrings--pubsub","value":"pubsub:6379"},{"name":"connectionstrings--requestlog","value":"https://storageyvabyidqgqy7c.table.core.windows.net/"},{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","keyVaultUrl":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/secrets/connectionString","name":"connectionstrings--cosmos"}]},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/webfrontend-azdtest-d72e96b:azd-deploy-1726512656","name":"webfrontend"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":true,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","server":"acr7bjev4wfxb2j6.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"secrets":[{"name":"connectionstrings--markdown","value":"https://storage7bjev4wfxb2j6.blob.core.windows.net/"},{"name":"connectionstrings--messages","value":"https://storage7bjev4wfxb2j6.queue.core.windows.net/"},{"name":"connectionstrings--pubsub","value":"pubsub:6379"},{"name":"connectionstrings--requestlog","value":"https://storage7bjev4wfxb2j6.table.core.windows.net/"},{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","keyVaultUrl":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/secrets/connectionString","name":"connectionstrings--cosmos"}]},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/webfrontend-azdtest-w9954a4:azd-deploy-1730756618","name":"webfrontend"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}' form: {} headers: Accept: @@ -1859,14 +1842,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "2872" + - "2886" Content-Type: - application/json User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -1874,22 +1857,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4875 + content_length: 5034 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:46.5871551Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:46.5871551Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/webfrontend-azdtest-d72e96b:azd-deploy-1726512656","imageType":"CloudBuild","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:39.2441123Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:39.2441123Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/webfrontend-azdtest-w9954a4:azd-deploy-1730756618","imageType":"CloudBuild","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/89e3acb3-4ee9-4f9d-bd7c-a60a70c117dd?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638621099278058739&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=kcFdv9A7nZ9cXIZPrSFcUI-QBvKcaZrKGgGNmSrsTCDqB3UdFFcxjqrscf-P7woVUBckBQnxeaQPRw4sJaKfjjEt84lyIJys8gz-98QStgYKM_QWAQaCYVOulpiEjvCEpWzXDkNN3nbqWRilRy7FUO2u3ZKGxmozPRjNQxEiTHpF2b07WLu6jIPXeakLFJnCjeSb-5v9Lfgpuv1EUrAEGAOjU6JwA_qGRllIdwY7THBHrWTs1WxKDik8m0EUPWUpqMR75I0cx7xOoEtuTv5jZay-ZInGB0CzRyNvIBSmesHkNqTovoYHuAXSbGvOgoKTFikRF-YNZohEnqdGwbUjyg&h=00yek_FxbNvctt2cmMJ-e4MFwhTbd6KifWpqoDDRdD4 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/02fe20f6-269b-48e4-844e-419d0753630b?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638663539603378677&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=K8bG6elZDPSJg5jL4bNkx8aldT24M02W4TEu9Li1xVfYvaTUlf0g22pPv-X4auTEi-VoHHiOrO-Gb8-Smn3pd6AUywj-_t0xn6TFckfQLGR7gglcGGh3CCkvFOU173ARewtW9dnTr10Kz9LlV1U8N3UaB7Khi4W35kK6XXGChura1VsTiSmSM7xBnViSHfspAIvq0HrS8rclRNnctFZAsjD4SAO5qhiEYf-cj52T2SV14rsW2AXsk-MYyN63PhjB05Yby_L1rha3abwBWKqOO5OzEGiO3Q4EXPR3xw1MSSoZCchWRnhuFmfSqV4ediLCVLubYYncxZLLrV7BLHx1YA&h=6GohBTlWeLeX0tA39-1Xx5cH5rLBwBt5vdHD3VjAqy0 Cache-Control: - no-cache Content-Length: - - "4875" + - "5034" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:58:47 GMT + - Mon, 04 Nov 2024 21:52:39 GMT Expires: - "-1" Pragma: @@ -1905,21 +1888,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - be4cb45a-d8f7-45dd-b91b-e1864f671642 + - cb8d9349-953a-47ae-9624-17c89245d607 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185847Z:be4cb45a-d8f7-45dd-b91b-e1864f671642 + - WESTUS2:20241104T215240Z:cb8d9349-953a-47ae-9624-17c89245d607 X-Msedge-Ref: - - 'Ref A: AD31F8D0C2C44B3AB0FD9B628DB87303 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:58:44Z' + - 'Ref A: B3AA4145255647A6BCFFEDDDAD8CD38A Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:38Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 3.018375167s - - id: 28 + duration: 2.131161s + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1938,10 +1921,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/89e3acb3-4ee9-4f9d-bd7c-a60a70c117dd?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=00yek_FxbNvctt2cmMJ-e4MFwhTbd6KifWpqoDDRdD4&s=kcFdv9A7nZ9cXIZPrSFcUI-QBvKcaZrKGgGNmSrsTCDqB3UdFFcxjqrscf-P7woVUBckBQnxeaQPRw4sJaKfjjEt84lyIJys8gz-98QStgYKM_QWAQaCYVOulpiEjvCEpWzXDkNN3nbqWRilRy7FUO2u3ZKGxmozPRjNQxEiTHpF2b07WLu6jIPXeakLFJnCjeSb-5v9Lfgpuv1EUrAEGAOjU6JwA_qGRllIdwY7THBHrWTs1WxKDik8m0EUPWUpqMR75I0cx7xOoEtuTv5jZay-ZInGB0CzRyNvIBSmesHkNqTovoYHuAXSbGvOgoKTFikRF-YNZohEnqdGwbUjyg&t=638621099278058739 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/02fe20f6-269b-48e4-844e-419d0753630b?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=6GohBTlWeLeX0tA39-1Xx5cH5rLBwBt5vdHD3VjAqy0&s=K8bG6elZDPSJg5jL4bNkx8aldT24M02W4TEu9Li1xVfYvaTUlf0g22pPv-X4auTEi-VoHHiOrO-Gb8-Smn3pd6AUywj-_t0xn6TFckfQLGR7gglcGGh3CCkvFOU173ARewtW9dnTr10Kz9LlV1U8N3UaB7Khi4W35kK6XXGChura1VsTiSmSM7xBnViSHfspAIvq0HrS8rclRNnctFZAsjD4SAO5qhiEYf-cj52T2SV14rsW2AXsk-MYyN63PhjB05Yby_L1rha3abwBWKqOO5OzEGiO3Q4EXPR3xw1MSSoZCchWRnhuFmfSqV4ediLCVLubYYncxZLLrV7BLHx1YA&t=638663539603378677 method: GET response: proto: HTTP/2.0 @@ -1949,20 +1932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 277 + content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/21db1757-861f-4c3e-96ec-e007c2b9f366","name":"21db1757-861f-4c3e-96ec-e007c2b9f366","status":"Succeeded","startTime":"2024-09-16T18:58:47.403541"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/02fe20f6-269b-48e4-844e-419d0753630b","name":"02fe20f6-269b-48e4-844e-419d0753630b","status":"Succeeded","startTime":"2024-11-04T21:52:39.8556486"}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "277" + - "278" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:02 GMT + - Mon, 04 Nov 2024 21:52:55 GMT Expires: - "-1" Pragma: @@ -1976,21 +1959,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - afa3115e-9df8-4b18-93f6-e23e3ae8e578 + - 26294c53-185b-470a-a87a-dfd7b34d5631 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185903Z:afa3115e-9df8-4b18-93f6-e23e3ae8e578 + - WESTUS2:20241104T215255Z:26294c53-185b-470a-a87a-dfd7b34d5631 X-Msedge-Ref: - - 'Ref A: 11039D2723894D4B9B3FBAC2ABF9421A Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:02Z' + - 'Ref A: 99025D67F1B34CB2999BD50C10C99B27 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:55Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 356.19525ms - - id: 29 + duration: 333.1215ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -2009,10 +1994,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -2020,20 +2005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5464 + content_length: 5635 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:46.5871551","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:46.5871551"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"latestRevisionName":"webfrontend--61o1096","latestReadyRevisionName":"webfrontend--61o1096","latestRevisionFqdn":"webfrontend--61o1096.gentleriver-3807de47.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.gentleriver-3807de47.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":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/webfrontend-azdtest-d72e96b:azd-deploy-1726512656","imageType":"ContainerImage","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"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-d72e96b/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:39.2441123","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:39.2441123"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"webfrontend--eeie0kl","latestReadyRevisionName":"webfrontend--eeie0kl","latestRevisionFqdn":"webfrontend--eeie0kl.delightfulglacier-74532064.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.delightfulglacier-74532064.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":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/webfrontend-azdtest-w9954a4:azd-deploy-1730756618","imageType":"ContainerImage","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"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-w9954a4/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "5464" + - "5635" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:02 GMT + - Mon, 04 Nov 2024 21:52:55 GMT Expires: - "-1" Pragma: @@ -2047,21 +2032,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - c40cfb77-8b7a-45fb-b8dc-d6447750a884 + - 011e8d01-c51c-46cb-a579-b21fe229480a X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185903Z:c40cfb77-8b7a-45fb-b8dc-d6447750a884 + - WESTUS2:20241104T215256Z:011e8d01-c51c-46cb-a579-b21fe229480a X-Msedge-Ref: - - 'Ref A: 1848753ED8DF4E06A705410FFA75D755 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:03Z' + - 'Ref A: 11696C087E3B4F21A1ADEFC3EC263FFC Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:55Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 499.161458ms - - id: 30 + duration: 598.9135ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2082,10 +2069,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -2093,20 +2080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5328 + content_length: 5499 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:46.5871551","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:46.5871551"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","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","20.161.149.115"],"latestRevisionName":"webfrontend--61o1096","latestReadyRevisionName":"webfrontend--61o1096","latestRevisionFqdn":"webfrontend--61o1096.gentleriver-3807de47.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.gentleriver-3807de47.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":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/webfrontend-azdtest-d72e96b:azd-deploy-1726512656","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.gentleriver-3807de47.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"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-d72e96b/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:39.2441123","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:39.2441123"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"webfrontend--eeie0kl","latestReadyRevisionName":"webfrontend--eeie0kl","latestRevisionFqdn":"webfrontend--eeie0kl.delightfulglacier-74532064.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.delightfulglacier-74532064.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":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/webfrontend-azdtest-w9954a4:azd-deploy-1730756618","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.delightfulglacier-74532064.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"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-w9954a4/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "5328" + - "5499" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:03 GMT + - Mon, 04 Nov 2024 21:52:56 GMT Expires: - "-1" Pragma: @@ -2120,21 +2107,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 970e5ae1-5c23-4be7-b9e3-c38a19cdafa9 + - 154c3a08-4a65-4d22-b7ea-69e02d1639e9 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185904Z:970e5ae1-5c23-4be7-b9e3-c38a19cdafa9 + - WESTUS2:20241104T215256Z:154c3a08-4a65-4d22-b7ea-69e02d1639e9 X-Msedge-Ref: - - 'Ref A: 7B6CFE5A090F4B98B365F392EEC3E7A4 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:03Z' + - 'Ref A: E429371A9D3845B3B45EB1F99D28B8D0 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:56Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 497.151666ms - - id: 31 + duration: 522.76ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2155,10 +2144,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2168,7 +2157,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2177,7 +2166,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:03 GMT + - Mon, 04 Nov 2024 21:52:56 GMT Expires: - "-1" Pragma: @@ -2189,19 +2178,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - b4e3aca7-679d-40ef-b6a9-29178d9a9a00 + - ca0304aa-399c-480f-967f-ce24c45ed5f2 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185904Z:b4e3aca7-679d-40ef-b6a9-29178d9a9a00 + - WESTUS2:20241104T215256Z:ca0304aa-399c-480f-967f-ce24c45ed5f2 X-Msedge-Ref: - - 'Ref A: 1DE7ABA2ACBF452B9402B0358B3B1B0B Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:04Z' + - 'Ref A: 1703ECAAD61D4E2D988288BEA81A5870 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:52:56Z' status: 200 OK code: 200 - duration: 73.273ms - - id: 32 + duration: 65.2509ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2210,17 +2201,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acryvabyidqgqy7c.azurecr.io + host: acr7bjev4wfxb2j6.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acryvabyidqgqy7c.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acr7bjev4wfxb2j6.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acryvabyidqgqy7c.azurecr.io + - acr7bjev4wfxb2j6.azurecr.io headers: Accept-Encoding: - gzip @@ -2229,10 +2220,10 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://acryvabyidqgqy7c.azurecr.io:443/oauth2/exchange + - 132b96b234ef0a8020e254142c71ce9a + url: https://acr7bjev4wfxb2j6.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -2250,30 +2241,30 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:04 GMT + - Mon, 04 Nov 2024 21:52:56 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.633333" + - "166.616667" status: 200 OK code: 200 - duration: 84.704625ms - - id: 33 + duration: 72.113ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1326 + content_length: 1328 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","server":"acryvabyidqgqy7c.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/worker-azdtest-d72e96b:azd-deploy-1726512656","name":"worker"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","server":"acr7bjev4wfxb2j6.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/worker-azdtest-w9954a4:azd-deploy-1730756618","name":"worker"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}' form: {} headers: Accept: @@ -2283,14 +2274,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1326" + - "1328" Content-Type: - application/json User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -2298,22 +2289,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3335 + content_length: 3482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:59:28.8662209Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:59:28.8662209Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/worker-azdtest-d72e96b:azd-deploy-1726512656","imageType":"CloudBuild","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:53:07.0117831Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:53:07.0117831Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/worker-azdtest-w9954a4:azd-deploy-1730756618","imageType":"CloudBuild","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/5717cc62-ba61-4389-ba11-59b63d5f4166?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638621099700537235&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=vbUGEmao92-nJDVf_VfzLO-GHYCiBXNbGUvflcM0u_jtraf1mVwI2gUchKZnLrItDQN7IMr3oX_0hrfD086F03ncUgn7jI9A-A_SwWE7QYe5SpN5T_Uz41G3z71jn4Q3XZG3Q8kZuLWbAwxKrK9m7PFprSAT2drWODwL0q66E-OCjVvW4mFnF_4lfaAjAuUDwoGWY3cqoNpoXRRcfpv3pFqPb6QhYQ--YV_bpdRHWU-_4BVMELGIY6EGbMvM4Yw9p12hWjHej_8RiiC23fWzjgECcRQX4SKfjgpYpZQw9E92LRgdzHLB4vvraOGFmF08lBwODn0tTDcfFMn6m1pakw&h=0iIq8HNW_4ITLtwkgpthbUwx67el5zYWeJDIuK_SfCs + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a0289c82-7a61-4f24-8543-7b3d26cca960?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638663539881836879&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=Mb3PCqHE9eTOHqtgcoFQMCTx02zghjC1YRNHCgKT2khUgHWCaQhEeQcYfCC5BITazKfbH4mPwnEGjX7aCa9zd_IUhWnAkXsbznXpsyL2NnXYvdJFu5B6Xg6lCnwI2Ri6AtqOeq3StESBhjYUDHpXps-0NEFUObXUZngWJpE8UT2qRzmtyDYMWWsvjtWf9giKi69Y1fo6tJjdSgMOkGcM4qEweGLvP2Q5L5cqsSxO_JtG35wrTE53yuBaICBduJ1i4ufbEUS-YcIhTKaEGYSSCf1uv81pBFkO0NFWeA0P0iIW7mOMj8KruYLAbON5b83jyFhyU_grq-iiecp9Ew6NwQ&h=t-TKGh9qZx7N08Ske5tUCIK6hVNqWKGsBJfJ5f-3vH0 Cache-Control: - no-cache Content-Length: - - "3335" + - "3482" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:29 GMT + - Mon, 04 Nov 2024 21:53:07 GMT Expires: - "-1" Pragma: @@ -2329,21 +2320,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - 2fb0b8c5-559f-4a91-9911-c5d20b9862b9 + - 9e99c83d-6a94-44b3-82dd-9f1bceecdc36 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185930Z:2fb0b8c5-559f-4a91-9911-c5d20b9862b9 + - WESTUS2:20241104T215308Z:9e99c83d-6a94-44b3-82dd-9f1bceecdc36 X-Msedge-Ref: - - 'Ref A: EB8191F53EBA498FBFC353952C4DADA4 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:27Z' + - 'Ref A: A589713BAA514BC486F7BF61D96A9B94 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:05Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 3.046300917s - - id: 34 + duration: 2.370569s + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2362,10 +2353,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/5717cc62-ba61-4389-ba11-59b63d5f4166?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=0iIq8HNW_4ITLtwkgpthbUwx67el5zYWeJDIuK_SfCs&s=vbUGEmao92-nJDVf_VfzLO-GHYCiBXNbGUvflcM0u_jtraf1mVwI2gUchKZnLrItDQN7IMr3oX_0hrfD086F03ncUgn7jI9A-A_SwWE7QYe5SpN5T_Uz41G3z71jn4Q3XZG3Q8kZuLWbAwxKrK9m7PFprSAT2drWODwL0q66E-OCjVvW4mFnF_4lfaAjAuUDwoGWY3cqoNpoXRRcfpv3pFqPb6QhYQ--YV_bpdRHWU-_4BVMELGIY6EGbMvM4Yw9p12hWjHej_8RiiC23fWzjgECcRQX4SKfjgpYpZQw9E92LRgdzHLB4vvraOGFmF08lBwODn0tTDcfFMn6m1pakw&t=638621099700537235 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a0289c82-7a61-4f24-8543-7b3d26cca960?api-version=2024-02-02-preview&azureAsyncOperation=true&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&h=t-TKGh9qZx7N08Ske5tUCIK6hVNqWKGsBJfJ5f-3vH0&s=Mb3PCqHE9eTOHqtgcoFQMCTx02zghjC1YRNHCgKT2khUgHWCaQhEeQcYfCC5BITazKfbH4mPwnEGjX7aCa9zd_IUhWnAkXsbznXpsyL2NnXYvdJFu5B6Xg6lCnwI2Ri6AtqOeq3StESBhjYUDHpXps-0NEFUObXUZngWJpE8UT2qRzmtyDYMWWsvjtWf9giKi69Y1fo6tJjdSgMOkGcM4qEweGLvP2Q5L5cqsSxO_JtG35wrTE53yuBaICBduJ1i4ufbEUS-YcIhTKaEGYSSCf1uv81pBFkO0NFWeA0P0iIW7mOMj8KruYLAbON5b83jyFhyU_grq-iiecp9Ew6NwQ&t=638663539881836879 method: GET response: proto: HTTP/2.0 @@ -2375,10 +2366,10 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/829be666-b7e3-4ca4-bbdd-953c03a28000","name":"829be666-b7e3-4ca4-bbdd-953c03a28000","status":"Succeeded","startTime":"2024-09-16T18:59:29.6462907"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/a0289c82-7a61-4f24-8543-7b3d26cca960","name":"a0289c82-7a61-4f24-8543-7b3d26cca960","status":"Succeeded","startTime":"2024-11-04T21:53:07.7618146"}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -2386,7 +2377,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:44 GMT + - Mon, 04 Nov 2024 21:53:22 GMT Expires: - "-1" Pragma: @@ -2400,21 +2391,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 7fea3cac-d922-4839-a659-7e17575a8404 + - 8e866806-dc65-48c7-ba82-523182ed627e X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185945Z:7fea3cac-d922-4839-a659-7e17575a8404 + - WESTUS2:20241104T215323Z:8e866806-dc65-48c7-ba82-523182ed627e X-Msedge-Ref: - - 'Ref A: 6C8FD64D507A4EBFBB359E07DDBE3C50 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:45Z' + - 'Ref A: 2D8CFAA05D92496F8847DF06A795E704 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:23Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 335.98175ms - - id: 35 + duration: 297.4468ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2433,10 +2426,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -2444,20 +2437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3747 + content_length: 3894 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:59:28.8662209","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:59:28.8662209"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","workloadProfileName":"consumption","patchingMode":"Automatic","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","20.161.149.115"],"latestRevisionName":"worker--ld6y5fh","latestReadyRevisionName":"worker--ld6y5fh","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/worker-azdtest-d72e96b:azd-deploy-1726512656","imageType":"ContainerImage","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-d72e96b/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:53:07.0117831","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:53:07.0117831"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"worker--s246vll","latestReadyRevisionName":"worker--s246vll","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/worker-azdtest-w9954a4:azd-deploy-1730756618","imageType":"ContainerImage","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-w9954a4/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3747" + - "3894" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:45 GMT + - Mon, 04 Nov 2024 21:53:23 GMT Expires: - "-1" Pragma: @@ -2471,21 +2464,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1098" X-Ms-Request-Id: - - e3e3747e-52d2-40cd-9d81-075de7847a4b + - 7414dc90-a652-478c-aba8-ce077a16e3dd X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185946Z:e3e3747e-52d2-40cd-9d81-075de7847a4b + - WESTUS2:20241104T215323Z:7414dc90-a652-478c-aba8-ce077a16e3dd X-Msedge-Ref: - - 'Ref A: 8F87EA2860884380A542C72954AFC2BA Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:45Z' + - 'Ref A: D05B41CDA84A45B5A0BAEDB6F5D9174F Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:23Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 574.544292ms - - id: 36 + duration: 484.0117ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2506,10 +2501,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -2517,20 +2512,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3611 + content_length: 3758 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:59:28.8662209","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:59:28.8662209"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","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","20.161.149.115"],"latestRevisionName":"worker--ld6y5fh","latestReadyRevisionName":"worker--ld6y5fh","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acryvabyidqgqy7c.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acryvabyidqgqy7c.azurecr.io/aspireazdtests/worker-azdtest-d72e96b:azd-deploy-1726512656","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-d72e96b/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:53:07.0117831","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:53:07.0117831"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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","135.224.218.215"],"latestRevisionName":"worker--s246vll","latestReadyRevisionName":"worker--s246vll","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acr7bjev4wfxb2j6.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acr7bjev4wfxb2j6.azurecr.io/aspire-azd-tests/worker-azdtest-w9954a4:azd-deploy-1730756618","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"54080441-e9fe-42f9-809c-cf1940107c35"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"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-w9954a4/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3611" + - "3758" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:45 GMT + - Mon, 04 Nov 2024 21:53:23 GMT Expires: - "-1" Pragma: @@ -2544,21 +2539,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 0de90eca-8808-454c-9a8c-6b221aa8d269 + - f47d4893-8ebe-4c86-8d3b-3a21483fbcac X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185946Z:0de90eca-8808-454c-9a8c-6b221aa8d269 + - WESTUS2:20241104T215324Z:f47d4893-8ebe-4c86-8d3b-3a21483fbcac X-Msedge-Ref: - - 'Ref A: 6BC0E9653B194FFEBE8BE7B2BE28EC92 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:46Z' + - 'Ref A: BCCA15CB3893428B901D47DCC89C5872 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:24Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 603.162791ms - - id: 37 + duration: 401.3313ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2579,10 +2576,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - 132b96b234ef0a8020e254142c71ce9a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2592,7 +2589,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2601,7 +2598,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 18:59:46 GMT + - Mon, 04 Nov 2024 21:53:23 GMT Expires: - "-1" Pragma: @@ -2613,19 +2610,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 58d4b3a80c514c22f5a7d71f5e02c407 + - 132b96b234ef0a8020e254142c71ce9a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 3343f672-b0f2-4d39-b7c9-184245ea13fa + - 0c8040f2-aac9-4ba2-b44c-086dee91b312 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185946Z:3343f672-b0f2-4d39-b7c9-184245ea13fa + - WESTUS2:20241104T215324Z:0c8040f2-aac9-4ba2-b44c-086dee91b312 X-Msedge-Ref: - - 'Ref A: 58FEFD65033D4AC59F0AEE477606F34E Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:46Z' + - 'Ref A: 7FC2C73A2B5747CF8CFC66764B1492AC Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:24Z' status: 200 OK code: 200 - duration: 67.28925ms - - id: 38 + duration: 52.1619ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2646,9 +2645,9 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -2657,83 +2656,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 259372 - 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=1c7dSoRAGMbxa%2fE9NhhtifBsnBlBdue1%2bVqws8UsTBmjXMZcvPfWooMuoePn%2f8DvAs3op86fT1M3ejv2rf%2bA7AKFpsgEE2g1PUDmz8MQg6DGOpNuu2%2fn6eH0PnXbbd9%2bQgZJdB%2bhrWe51DcQfxd6DL9bQnaR7otc8peg3COXTu2Q57nmA1fkWEgnCNqcK3tkaJ%2bedYLVwZBQcXftmkQuNMWlvq14H%2bRrOVcsQSPe9po0d7JXMy5lem2CtCKFNQZGkXK6if%2fq%2fwV%2bY1NT0h%2f6un4B","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","location":"eastus2","name":"azdtest-d72e96b-1726512656","properties":{"correlationId":"58d4b3a80c514c22f5a7d71f5e02c407","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceName":"rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceName":"rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/cosmos","resourceName":"cosmos","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceName":"rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT4M57.8786503S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/cd9c9d2a-ef58-5609-b908-349c9673f6a9"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/001c1967-7940-5990-9e00-faa32de268ab"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/aa6c13d1-05a0-5e5b-8b33-019edd1b131f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/ecad5ca3-d68f-5167-9220-28f51024cad2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/55c16f02-5bfb-534b-a09c-765055b9acd3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/88dbbfc0-6737-5b5b-ae3f-d5cc255aa90c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/b2717167-1122-5c14-aac3-2a4108a8977a"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentleriver-3807de47.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-yvabyidqgqy7c"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acryvabyidqgqy7c.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-yvabyidqgqy7c"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-yvabyidqgqy7c"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-d72e96b"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"5559727577912177490","timestamp":"2024-09-16T18:56:56.0598662Z"},"tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"},"type":"Microsoft.Resources/deployments"}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "259372" - Content-Type: - - application/json; charset=utf-8 - Date: - - Mon, 16 Sep 2024 18:59:58 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" - X-Ms-Request-Id: - - c47a324a-a959-48f8-aaf1-ceec3211ef28 - X-Ms-Routing-Request-Id: - - WESTUS2:20240916T185959Z:c47a324a-a959-48f8-aaf1-ceec3211ef28 - X-Msedge-Ref: - - 'Ref A: 30D613F0325C49338C670FAA13254BA2 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:57Z' - status: 200 OK - code: 200 - duration: 1.865356833s - - 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; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) - X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1c7dSoRAGMbxa%2fE9NhhtifBsnBlBdue1%2bVqws8UsTBmjXMZcvPfWooMuoePn%2f8DvAs3op86fT1M3ejv2rf%2bA7AKFpsgEE2g1PUDmz8MQg6DGOpNuu2%2fn6eH0PnXbbd9%2bQgZJdB%2bhrWe51DcQfxd6DL9bQnaR7otc8peg3COXTu2Q57nmA1fkWEgnCNqcK3tkaJ%2bedYLVwZBQcXftmkQuNMWlvq14H%2bRrOVcsQSPe9po0d7JXMy5lem2CtCKFNQZGkXK6if%2fq%2fwV%2bY1NT0h%2f6un4B - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 317589 + content_length: 1795381 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=3VPLbsIwEPwWfAYp5lFV3JysIyisjR1vqnBDKY0SUCK1QUlA%2fHtJW36gPbWnnd2dw%2byM9sLSqqzz8rSr86p01WFfvrP5hUkROYrGPSz3bb3ZvdV5z1jtOzZnfPA4UC5p8ZyM2PCTYavmvuPedGAPoY%2bQNYa2gGSmCnzfwhGMF4dI0lPOB%2bPiQLmXV8uVXkdeo4FuvJTjOeMalhyLbKIBxxjwhLyMK1d1FuQEi6TDQjZYpCN2HX5r%2fRNSaRVpcgs2L0%2fH45Apbd1CktUb%2bTP5s%2fEvnRYz5UTXO44FtphzXxdPkuDmtJQPeLDKEPVVWtr6MbVE59suNG3Pw0J0CsQMnSWEtNHONAoyT8fVZzLPMnL%2f%2bLzQChXIQCpnxfqeaSCUANH%2fz33SYxEtxVd%2fvX4A","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","location":"eastus2","name":"azdtest-w9954a4-1730756618","properties":{"correlationId":"132b96b234ef0a8020e254142c71ce9a","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceName":"rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceName":"rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceName":"cosmos","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceName":"rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5M56.1964351S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/a948d4e2-0e48-50f4-b912-25b9cc45567c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/9161cf46-272f-5c6c-9bdb-3f0f65dec990"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/deafb7ed-7da9-5fa9-8acf-c354de98bb2b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/df822f1f-4345-5074-b95c-1e305b3f60fb"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/3b9171bf-acb6-5a83-a1c3-0ba968661721"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/4bae44bb-82f3-595f-91c0-c5833b74eae8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/b7344427-9598-5996-956a-037124456b26"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"delightfulglacier-74532064.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr7bjev4wfxb2j6.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr7bjev4wfxb2j6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-7bjev4wfxb2j6"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"54080441-e9fe-42f9-809c-cf1940107c35"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-7bjev4wfxb2j6"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb57bjev4wfxb2j6"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"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":"3447098018377705335","timestamp":"2024-11-04T21:51:16.3059183Z"},"tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "317589" + - "1795381" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:02 GMT + - Mon, 04 Nov 2024 21:53:44 GMT Expires: - "-1" Pragma: @@ -2745,84 +2679,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 424c7b05-224b-461b-aea2-7c5b7b280982 + - bc857536-e48d-4c84-8cdd-0675c5a7e75f X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190003Z:424c7b05-224b-461b-aea2-7c5b7b280982 + - WESTUS2:20241104T215344Z:bc857536-e48d-4c84-8cdd-0675c5a7e75f X-Msedge-Ref: - - 'Ref A: 2D2FF37C71C542D0815E33D896C5DFD0 Ref B: CO6AA3150220025 Ref C: 2024-09-16T18:59:59Z' + - 'Ref A: F438BFF0E6CB492EB61C7E4E92624153 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:36Z' status: 200 OK code: 200 - duration: 3.903439709s - - 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; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) - X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3VPLbsIwEPwWfAYp5lFV3JysIyisjR1vqnBDKY0SUCK1QUlA%2fHtJW36gPbWnnd2dw%2byM9sLSqqzz8rSr86p01WFfvrP5hUkROYrGPSz3bb3ZvdV5z1jtOzZnfPA4UC5p8ZyM2PCTYavmvuPedGAPoY%2bQNYa2gGSmCnzfwhGMF4dI0lPOB%2bPiQLmXV8uVXkdeo4FuvJTjOeMalhyLbKIBxxjwhLyMK1d1FuQEi6TDQjZYpCN2HX5r%2fRNSaRVpcgs2L0%2fH45Apbd1CktUb%2bTP5s%2fEvnRYz5UTXO44FtphzXxdPkuDmtJQPeLDKEPVVWtr6MbVE59suNG3Pw0J0CsQMnSWEtNHONAoyT8fVZzLPMnL%2f%2bLzQChXIQCpnxfqeaSCUANH%2fz33SYxEtxVd%2fvX4A - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 314557 - 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=1ZNNa8JAEIZ%2fi3tWSLQp4m2T2dCqO%2bt%2bjMXeSmrFRBJolSSK%2f72JNlDopbSHUvaw83V4n3l3Tywp8v02Pzztt0Xuimydv7HJiQluHdlhG%2bbrar94et1v24nZumYT5vfGPXSrSh5XA9a%2fTJii7Hq%2bN%2b6ZLA4lbEpNjyBJ3yCEoYEdaG8ZSxIeuhC0W0bonl%2bMj2puvVIBNXOJjyBqCfwom6Oc9lXko43ROBCVSqdCuqTGVAQIG0%2bWgwE79z%2f0%2fhu5qIy7E2TUQvxMczD85YqzCp0uZboJME2GMvLDdrUERW2EuJWZQSt0ewtDj%2bGSKqJj04v11YKU1wg8kG5KEnTZ2DRSkNUqLi52PAjr%2fhQvCRTce9KJUYPpKfsVTxN9Ey9p8JqXeZTDz3hkR2ySH3a7PqOZVeTuujQ2HCMRCXSGz7tixJEDb79VV2ljbu%2f5NT%2bf3wE%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "314557" - Content-Type: - - application/json; charset=utf-8 - Date: - - Mon, 16 Sep 2024 19:00:05 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" - X-Ms-Request-Id: - - db403409-dc6b-4777-961b-9d79590c2c0e - X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190006Z:db403409-dc6b-4777-961b-9d79590c2c0e - X-Msedge-Ref: - - 'Ref A: D16C392339AC4101B7EB59FFD76DB633 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:03Z' - status: 200 OK - code: 200 - duration: 3.186853125s - - id: 41 + duration: 8.3490687s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2841,10 +2712,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZNNa8JAEIZ%2fi3tWSLQp4m2T2dCqO%2bt%2bjMXeSmrFRBJolSSK%2f72JNlDopbSHUvaw83V4n3l3Tywp8v02Pzztt0Xuimydv7HJiQluHdlhG%2bbrar94et1v24nZumYT5vfGPXSrSh5XA9a%2fTJii7Hq%2bN%2b6ZLA4lbEpNjyBJ3yCEoYEdaG8ZSxIeuhC0W0bonl%2bMj2puvVIBNXOJjyBqCfwom6Oc9lXko43ROBCVSqdCuqTGVAQIG0%2bWgwE79z%2f0%2fhu5qIy7E2TUQvxMczD85YqzCp0uZboJME2GMvLDdrUERW2EuJWZQSt0ewtDj%2bGSKqJj04v11YKU1wg8kG5KEnTZ2DRSkNUqLi52PAjr%2fhQvCRTce9KJUYPpKfsVTxN9Ey9p8JqXeZTDz3hkR2ySH3a7PqOZVeTuujQ2HCMRCXSGz7tixJEDb79VV2ljbu%2f5NT%2bf3wE%3d + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -2852,18 +2723,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534034 + content_length: 1738781 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=pZJPb4JAEMU%2fi3vWhFVsGm8Ls0TU3XX%2fDI3ejLVGMJC0GBDjdy%2fYkvTSk6eZ9%2bbNJr%2fM3si%2byMtTftmVpyJ3RXbIv8jsRjizDu2YzPLL%2bTz8lb2Syrg5R6PWvMvmh7pc7z7LU%2ffE8nAlM0IHrwPpNrVoNiMyfCRMUfUz6vsDk0WBgGOlcQsCtS8hCAycQXtJJJB70gWgXRJK9%2f5hqFQr61UKsM3tqXToyXQzUY5PFGRUhDRQ6YIjFFfD%2bYvIjLRcP6pOjl1F4doZxJVIddXu1QnwSkDmiSaeyibZkfuQvHHrnsGajp%2fEYpVsjlQAo6LZ%2b%2bp%2fLG5wGyRYIzYtVqTrDl%2bk7CqBTYVboGjxlGt9iMcyKkY93p%2bbdrRoJ%2f1RcWkVunkvI8NkyEMunWGr3gyZZMC6v9E7Xc9szH70%2ff4N","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "534034" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:09 GMT + - Mon, 04 Nov 2024 21:53:49 GMT Expires: - "-1" Pragma: @@ -2875,19 +2746,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 89f35313-4aba-4347-b255-04f77ff51a65 + - a1f22781-82c1-42ac-a1b3-5bd06e1bd2f4 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190009Z:89f35313-4aba-4347-b255-04f77ff51a65 + - WESTUS2:20241104T215350Z:a1f22781-82c1-42ac-a1b3-5bd06e1bd2f4 X-Msedge-Ref: - - 'Ref A: 526EB0BF325F48238D9F29D03CD337C0 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:06Z' + - 'Ref A: CB2AF45BB7E540CB871FDA3DD0F3F20F Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:45Z' status: 200 OK code: 200 - duration: 3.5370275s - - id: 42 + duration: 5.2187469s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2906,10 +2779,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZJPb4JAEMU%2fi3vWhFVsGm8Ls0TU3XX%2fDI3ejLVGMJC0GBDjdy%2fYkvTSk6eZ9%2bbNJr%2fM3si%2byMtTftmVpyJ3RXbIv8jsRjizDu2YzPLL%2bTz8lb2Syrg5R6PWvMvmh7pc7z7LU%2ffE8nAlM0IHrwPpNrVoNiMyfCRMUfUz6vsDk0WBgGOlcQsCtS8hCAycQXtJJJB70gWgXRJK9%2f5hqFQr61UKsM3tqXToyXQzUY5PFGRUhDRQ6YIjFFfD%2bYvIjLRcP6pOjl1F4doZxJVIddXu1QnwSkDmiSaeyibZkfuQvHHrnsGajp%2fEYpVsjlQAo6LZ%2b%2bp%2fLG5wGyRYIzYtVqTrDl%2bk7CqBTYVboGjxlGt9iMcyKkY93p%2bbdrRoJ%2f1RcWkVunkvI8NkyEMunWGr3gyZZMC6v9E7Xc9szH70%2ff4N + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -2917,18 +2790,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 174774 + content_length: 1207133 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=xZBdb4IwFIZ%2fi72eCTBcjHeFlvl1WltaDLsz6AzFQLJhAI3%2ffRRHsn%2bwq3Oe9z1J8%2fSOsqqs8%2fJ6qPOqVFVxKr%2fR4o4Yl2pJteQ7arE8tfXu8FXn9mpz6tACuZP5hKm0hVs6RS%2fDhayasXP9%2bUQWUQDk3Aj9QUALn5EgkORChJNEoKnDVECESkKmjp%2fSZXwbOw0nur%2fLXGbAB5N17AYeM9mMh27AzZpqU3WSumu7JzoaptJROjChb1CIDsjKAVK0EIkWFJ6B6acRzv48naLHC9rTWP2nmko7Zs4tJ9jr9VrIf9WIVbMKclCVNHkXSQL9Z9lMg%2bp7smp6lYYr2iYE%2b4Omwh6Y48GqURwrHXtoUV4vlxFHst5%2fyie%2bjq3exFyr5YiRxCykIWVK4u0Yhphhgu0jY2J3HK%2fwkx%2bPHw%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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "174774" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:12 GMT + - Mon, 04 Nov 2024 21:53:53 GMT Expires: - "-1" Pragma: @@ -2940,19 +2813,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - ff144072-8b84-4a4e-96a3-adcb1401e70e + - f71d45b4-f0d3-43bb-ab0d-58fcf350a231 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190012Z:ff144072-8b84-4a4e-96a3-adcb1401e70e + - WESTUS2:20241104T215354Z:f71d45b4-f0d3-43bb-ab0d-58fcf350a231 X-Msedge-Ref: - - 'Ref A: E3F5B63B12C74443897088176849C5E2 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:09Z' + - 'Ref A: 2262C953F6084876A7574DD779A3DA2D Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:50Z' status: 200 OK code: 200 - duration: 2.9334115s - - id: 43 + duration: 3.7115963s + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2971,10 +2846,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZBdb4IwFIZ%2fi72eCTBcjHeFlvl1WltaDLsz6AzFQLJhAI3%2ffRRHsn%2bwq3Oe9z1J8%2fSOsqqs8%2fJ6qPOqVFVxKr%2fR4o4Yl2pJteQ7arE8tfXu8FXn9mpz6tACuZP5hKm0hVs6RS%2fDhayasXP9%2bUQWUQDk3Aj9QUALn5EgkORChJNEoKnDVECESkKmjp%2fSZXwbOw0nur%2fLXGbAB5N17AYeM9mMh27AzZpqU3WSumu7JzoaptJROjChb1CIDsjKAVK0EIkWFJ6B6acRzv48naLHC9rTWP2nmko7Zs4tJ9jr9VrIf9WIVbMKclCVNHkXSQL9Z9lMg%2bp7smp6lYYr2iYE%2b4Omwh6Y48GqURwrHXtoUV4vlxFHst5%2fyie%2bjq3exFyr5YiRxCykIWVK4u0Yhphhgu0jY2J3HK%2fwkx%2bPHw%3d%3d + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -2982,18 +2857,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 730460 + content_length: 128484 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=pY%2fLbsIwEEW%2fBa9BiltSIXZO7AAFj7EzDqI7RCkiQYnUBuWB%2bPdiolTds5sz92pG50r2RV6e8suuPBU5Ftkh%2fyHTKwFlcC6sUWvhMD%2fU5Xr3XZ5ca3loyJTQwWQAuK1lux2R4aNhiqrPqP8yMFkUSH6stP3g0uox8CAw%2fMy1l0TSCg8w4BqTEPDzy1BQq9irFLf33p5CqqlsFzWkWwptVkFIA5W%2bC8uLxgjxJjMD3Wyi%2b58EI4MuT7i8Z7qRfOFJntUy0pVC5gPKRmFWb46jEbkNyUbE%2bIzeePKsXg1ctpBmteJZ%2b6eXOj0zw8RpmJltHdNg47Qj3ThFmbIGOPMlBlYiu%2bvpFrj1ZVI81ASL0cYvZJpfzuch6bAn5%2f0v7PC1T%2b0yVhbnPUaGQShCAWjYql%2bGDBhn7mq%2fcTOLF6zj2%2b0X","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "730460" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:16 GMT + - Mon, 04 Nov 2024 21:53:54 GMT Expires: - "-1" Pragma: @@ -3005,19 +2880,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 46902e29-d652-4389-814e-ae9fb5c1708a + - a3e773a4-5546-4212-8462-2b89b1fc3968 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190016Z:46902e29-d652-4389-814e-ae9fb5c1708a + - WESTUS2:20241104T215355Z:a3e773a4-5546-4212-8462-2b89b1fc3968 X-Msedge-Ref: - - 'Ref A: 1F3256691D4A4CDAB0D7B5E36CA69333 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:12Z' + - 'Ref A: 32E62F4E68454A0786A4E905E155F2EA Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:54Z' status: 200 OK code: 200 - duration: 4.145715458s - - id: 44 + duration: 1.2541587s + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3036,10 +2913,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pY%2fLbsIwEEW%2fBa9BiltSIXZO7AAFj7EzDqI7RCkiQYnUBuWB%2bPdiolTds5sz92pG50r2RV6e8suuPBU5Ftkh%2fyHTKwFlcC6sUWvhMD%2fU5Xr3XZ5ca3loyJTQwWQAuK1lux2R4aNhiqrPqP8yMFkUSH6stP3g0uox8CAw%2fMy1l0TSCg8w4BqTEPDzy1BQq9irFLf33p5CqqlsFzWkWwptVkFIA5W%2bC8uLxgjxJjMD3Wyi%2b58EI4MuT7i8Z7qRfOFJntUy0pVC5gPKRmFWb46jEbkNyUbE%2bIzeePKsXg1ctpBmteJZ%2b6eXOj0zw8RpmJltHdNg47Qj3ThFmbIGOPMlBlYiu%2bvpFrj1ZVI81ASL0cYvZJpfzuch6bAn5%2f0v7PC1T%2b0yVhbnPUaGQShCAWjYql%2bGDBhn7mq%2fcTOLF6zj2%2b0X + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -3047,18 +2924,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 468033 + content_length: 537 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=TY9da8JAEEV%2fi%2fusYKwpxbdNZoNWZ9fs7qTEN0ltMUoCbSQf4n%2bvW1nw7Z57LgxzZUVdNcfqsm%2bOdWXr06H6ZYsrk0rbpSCttsJhdeia7f6nObrV%2btCzBQtGbyNp8w6HfMLG%2fwtdt94F4WykT0mE8N2mtAOkdC4hijScIZ1mCZKYShtBarNY2s8vHUi1MdNWAd13xQxt0WKZhwqKUJbFIPsgUuW7IKh7LRJ02Qh6xZMWmnZRRh3RcHdJ2jmHJe8l8BBBE0LRKosDDqu5zOoJu43ZhzDWv1ddzucxE9xYMjO2eEZPbv4kH%2fjiLa2NIrv0mGguYxELaTXf%2bDLmkgN3R3zjMjcr%2fuDb7Q8%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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "468033" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:18 GMT + - Mon, 04 Nov 2024 21:53:55 GMT Expires: - "-1" Pragma: @@ -3070,19 +2947,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 9769ffd8-d453-48d7-b501-52b49ada99da + - dcd0e8ac-0da7-441d-b9e8-87c185bea2ed X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190019Z:9769ffd8-d453-48d7-b501-52b49ada99da + - WESTUS2:20241104T215356Z:dcd0e8ac-0da7-441d-b9e8-87c185bea2ed X-Msedge-Ref: - - 'Ref A: 16DEC85A711446F3BD62E4C909D35BA1 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:17Z' + - 'Ref A: 2F9641910698450B9C9CAEC2E495D023 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:55Z' status: 200 OK code: 200 - duration: 2.655349625s - - id: 45 + duration: 713.7713ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3101,10 +2980,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=TY9da8JAEEV%2fi%2fusYKwpxbdNZoNWZ9fs7qTEN0ltMUoCbSQf4n%2bvW1nw7Z57LgxzZUVdNcfqsm%2bOdWXr06H6ZYsrk0rbpSCttsJhdeia7f6nObrV%2btCzBQtGbyNp8w6HfMLG%2fwtdt94F4WykT0mE8N2mtAOkdC4hijScIZ1mCZKYShtBarNY2s8vHUi1MdNWAd13xQxt0WKZhwqKUJbFIPsgUuW7IKh7LRJ02Qh6xZMWmnZRRh3RcHdJ2jmHJe8l8BBBE0LRKosDDqu5zOoJu43ZhzDWv1ddzucxE9xYMjO2eEZPbv4kH%2fjiLa2NIrv0mGguYxELaTXf%2bDLmkgN3R3zjMjcr%2fuDb7Q8%3d + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -3123,7 +3002,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:20 GMT + - Mon, 04 Nov 2024 21:53:56 GMT Expires: - "-1" Pragma: @@ -3135,19 +3014,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 066e3119-a831-4ce4-b6d8-90054588b3fe + - b9bdeecd-8119-4c9a-a4a5-38aad4cd0211 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190021Z:066e3119-a831-4ce4-b6d8-90054588b3fe + - WESTUS2:20241104T215356Z:b9bdeecd-8119-4c9a-a4a5-38aad4cd0211 X-Msedge-Ref: - - 'Ref A: B6F2A8E4E54F4826A8B8C80892C9B89A Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:19Z' + - 'Ref A: FDC171658FC847249B4190597F6E4C57 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:56Z' status: 200 OK code: 200 - duration: 1.482241s - - id: 46 + duration: 681.1544ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -3168,10 +3049,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3179,18 +3060,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8320 + content_length: 8489 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"},"properties":{"templateHash":"5559727577912177490","parameters":{"environmentName":{"type":"String","value":"azdtest-d72e96b"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-16T18:56:56.0598662Z","duration":"PT4M57.8786503S","correlationId":"58d4b3a80c514c22f5a7d71f5e02c407","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-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-yvabyidqgqy7c"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-yvabyidqgqy7c"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acryvabyidqgqy7c.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentleriver-3807de47.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/cd9c9d2a-ef58-5609-b908-349c9673f6a9"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/001c1967-7940-5990-9e00-faa32de268ab"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/aa6c13d1-05a0-5e5b-8b33-019edd1b131f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/ecad5ca3-d68f-5167-9220-28f51024cad2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/55c16f02-5bfb-534b-a09c-765055b9acd3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/88dbbfc0-6737-5b5b-ae3f-d5cc255aa90c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/b2717167-1122-5c14-aac3-2a4108a8977a"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"properties":{"templateHash":"3447098018377705335","parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T21:51:16.3059183Z","duration":"PT5M56.1964351S","correlationId":"132b96b234ef0a8020e254142c71ce9a","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-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"54080441-e9fe-42f9-809c-cf1940107c35"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-7bjev4wfxb2j6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr7bjev4wfxb2j6.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"delightfulglacier-74532064.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb57bjev4wfxb2j6"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/a948d4e2-0e48-50f4-b912-25b9cc45567c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/9161cf46-272f-5c6c-9bdb-3f0f65dec990"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/deafb7ed-7da9-5fa9-8acf-c354de98bb2b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/df822f1f-4345-5074-b95c-1e305b3f60fb"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/3b9171bf-acb6-5a83-a1c3-0ba968661721"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/4bae44bb-82f3-595f-91c0-c5833b74eae8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/b7344427-9598-5996-956a-037124456b26"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "8320" + - "8489" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:20 GMT + - Mon, 04 Nov 2024 21:53:56 GMT Expires: - "-1" Pragma: @@ -3202,19 +3083,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 17153790-52f5-475d-afaa-aa9fbb11eaf1 + - fc13d70e-5638-4d39-a0f5-ea173d75411f X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190021Z:17153790-52f5-475d-afaa-aa9fbb11eaf1 + - WESTUS2:20241104T215357Z:fc13d70e-5638-4d39-a0f5-ea173d75411f X-Msedge-Ref: - - 'Ref A: B69B085F4EA449188434C82826C2CE08 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:21Z' + - 'Ref A: 423922D9497C412288BE3508B2DBF6CF Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:56Z' status: 200 OK code: 200 - duration: 415.901791ms - - id: 47 + duration: 396.6709ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -3235,10 +3118,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3248,7 +3131,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3257,7 +3140,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:21 GMT + - Mon, 04 Nov 2024 21:53:56 GMT Expires: - "-1" Pragma: @@ -3269,19 +3152,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 15b86911-01bf-4ebc-888b-3ad38f9d909b + - 24ae0579-e2e9-4d40-844d-b42c80e4b58f X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190021Z:15b86911-01bf-4ebc-888b-3ad38f9d909b + - WESTUS2:20241104T215357Z:24ae0579-e2e9-4d40-844d-b42c80e4b58f X-Msedge-Ref: - - 'Ref A: 01ADAB1326FA46CC9F8B5FCA00C180AF Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:21Z' + - 'Ref A: A0E0C8B045054B84ACF36B047F6946F7 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:57Z' status: 200 OK code: 200 - duration: 74.3985ms - - id: 48 + duration: 82.7169ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -3302,10 +3187,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/resources?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3313,18 +3198,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6394 + content_length: 6424 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","name":"mi-yvabyidqgqy7c","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c","name":"kvf2edecb5yvabyidqgqy7c","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:03.346Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:03.346Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c","name":"law-yvabyidqgqy7c","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c","name":"acryvabyidqgqy7c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:03.3616957Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:03.3616957Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","name":"cae-yvabyidqgqy7c","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:20.4469031Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:20.4469031Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c","name":"storageyvabyidqgqy7c","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c","name":"cosmosyvabyidqgqy7c","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-09-16T18:56:16.5881222Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:57:43.7680204Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:57:43.7680204Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:03.088776Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:03.088776Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:46.5871551Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:46.5871551Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:59:28.8662209Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:59:28.8662209Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","name":"mi-7bjev4wfxb2j6","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6","name":"kvf2edecb57bjev4wfxb2j6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:25.203Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:25.203Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6","name":"law-7bjev4wfxb2j6","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6","name":"acr7bjev4wfxb2j6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:33.1055802Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:33.1055802Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","name":"cae-7bjev4wfxb2j6","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:50.4853648Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:50.4853648Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6","name":"cosmos7bjev4wfxb2j6","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-11-04T21:50:35.2656977Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6","name":"storage7bjev4wfxb2j6","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:51:49.4167639Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:51:49.4167639Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:08.4778667Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:08.4778667Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:39.2441123Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:39.2441123Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:53:07.0117831Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:53:07.0117831Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "6394" + - "6424" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:21 GMT + - Mon, 04 Nov 2024 21:53:57 GMT Expires: - "-1" Pragma: @@ -3336,19 +3221,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 3339192c-a266-4f29-97db-db1ca5c936dc + - 153e602d-6e5b-4ce6-b6c8-2b16799cc9f8 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190022Z:3339192c-a266-4f29-97db-db1ca5c936dc + - WESTUS2:20241104T215357Z:153e602d-6e5b-4ce6-b6c8-2b16799cc9f8 X-Msedge-Ref: - - 'Ref A: 750C86E1D9664F969D90991622618A95 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:21Z' + - 'Ref A: 5E4F19905333453E88C89B047F9B51FE Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:57Z' status: 200 OK code: 200 - duration: 530.356334ms - - id: 49 + duration: 201.3678ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -3369,10 +3256,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.0.0 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armkeyvault/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c?api-version=2021-10-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6?api-version=2021-10-01 method: GET response: proto: HTTP/2.0 @@ -3380,18 +3267,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 842 + content_length: 846 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c","name":"kvf2edecb5yvabyidqgqy7c","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:03.346Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:03.346Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6","name":"kvf2edecb57bjev4wfxb2j6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:25.203Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:25.203Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "842" + - "846" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:21 GMT + - Mon, 04 Nov 2024 21:53:57 GMT Expires: - "-1" Pragma: @@ -3405,23 +3292,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - fb9f5a8e-26f0-460f-87f1-cb6abafcedf6 + - 586093c7-16ad-433c-b66e-d22017df9db8 X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 X-Ms-Keyvault-Service-Version: - - 1.5.1299.0 + - 1.5.1361.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 82d610ae-3691-4d0b-8af4-d9e6a3856889 + - 2a211b52-023e-4448-ac8c-f62214aad471 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190022Z:ada51189-6143-46ac-8577-aab90e8d803c + - WESTUS2:20241104T215358Z:df1e672c-cd37-47b3-b93e-fdce96e8a231 X-Msedge-Ref: - - 'Ref A: 4BE1CEAF6CD04A11A7B0E458BA316C10 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:22Z' + - 'Ref A: C7E6BD72E7304516A5F78846B757512A Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:57Z' status: 200 OK code: 200 - duration: 239.129291ms - - id: 50 + duration: 492.7426ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3442,10 +3331,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3453,18 +3342,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8320 + content_length: 8489 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"},"properties":{"templateHash":"5559727577912177490","parameters":{"environmentName":{"type":"String","value":"azdtest-d72e96b"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-16T18:56:56.0598662Z","duration":"PT4M57.8786503S","correlationId":"58d4b3a80c514c22f5a7d71f5e02c407","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-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-yvabyidqgqy7c"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-yvabyidqgqy7c"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acryvabyidqgqy7c.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentleriver-3807de47.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/cd9c9d2a-ef58-5609-b908-349c9673f6a9"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/001c1967-7940-5990-9e00-faa32de268ab"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/aa6c13d1-05a0-5e5b-8b33-019edd1b131f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/ecad5ca3-d68f-5167-9220-28f51024cad2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/55c16f02-5bfb-534b-a09c-765055b9acd3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/88dbbfc0-6737-5b5b-ae3f-d5cc255aa90c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/b2717167-1122-5c14-aac3-2a4108a8977a"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"properties":{"templateHash":"3447098018377705335","parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T21:51:16.3059183Z","duration":"PT5M56.1964351S","correlationId":"132b96b234ef0a8020e254142c71ce9a","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-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"54080441-e9fe-42f9-809c-cf1940107c35"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-7bjev4wfxb2j6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr7bjev4wfxb2j6.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"delightfulglacier-74532064.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb57bjev4wfxb2j6"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/a948d4e2-0e48-50f4-b912-25b9cc45567c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/9161cf46-272f-5c6c-9bdb-3f0f65dec990"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/deafb7ed-7da9-5fa9-8acf-c354de98bb2b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/df822f1f-4345-5074-b95c-1e305b3f60fb"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/3b9171bf-acb6-5a83-a1c3-0ba968661721"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/4bae44bb-82f3-595f-91c0-c5833b74eae8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/b7344427-9598-5996-956a-037124456b26"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "8320" + - "8489" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:22 GMT + - Mon, 04 Nov 2024 21:53:57 GMT Expires: - "-1" Pragma: @@ -3476,19 +3365,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 027cd1ea-0907-4b9f-bd73-e5b69416d197 + - 3c90ad21-1151-4b41-8c37-e6f526423831 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190023Z:027cd1ea-0907-4b9f-bd73-e5b69416d197 + - WESTUS2:20241104T215358Z:3c90ad21-1151-4b41-8c37-e6f526423831 X-Msedge-Ref: - - 'Ref A: 03853B0084154027A84C1F7EB451F346 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:22Z' + - 'Ref A: 2A13C0F239914B9E9CD0664A0080ED72 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:58Z' status: 200 OK code: 200 - duration: 683.36725ms - - id: 51 + duration: 386.5234ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3509,10 +3400,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-d72e96b%27&api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9954a4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3522,7 +3413,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","name":"rg-azdtest-d72e96b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","name":"rg-azdtest-w9954a4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3531,7 +3422,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:22 GMT + - Mon, 04 Nov 2024 21:53:58 GMT Expires: - "-1" Pragma: @@ -3543,19 +3434,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 2c30780a-1e06-4d6a-bce8-c77244fa89d7 + - ba1409b8-93f2-4737-8938-9df26036e00f X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190023Z:2c30780a-1e06-4d6a-bce8-c77244fa89d7 + - WESTUS2:20241104T215358Z:ba1409b8-93f2-4737-8938-9df26036e00f X-Msedge-Ref: - - 'Ref A: AF0E4400AAFE465D878292EC0AD9B057 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:23Z' + - 'Ref A: 763A8EE627CC462CA045CD23449001F2 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:58Z' status: 200 OK code: 200 - duration: 104.35125ms - - id: 52 + duration: 113.1416ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3576,10 +3469,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/resources?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3587,18 +3480,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6394 + content_length: 6424 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c","name":"mi-yvabyidqgqy7c","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c","name":"kvf2edecb5yvabyidqgqy7c","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:03.346Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:03.346Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c","name":"law-yvabyidqgqy7c","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c","name":"acryvabyidqgqy7c","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:03.3616957Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:03.3616957Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c","name":"cae-yvabyidqgqy7c","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:52:20.4469031Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:52:20.4469031Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c","name":"storageyvabyidqgqy7c","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c","name":"cosmosyvabyidqgqy7c","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-09-16T18:56:16.5881222Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:57:43.7680204Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:57:43.7680204Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:03.088776Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:03.088776Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:58:46.5871551Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:58:46.5871551Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c":{"principalId":"19b8ebb4-530f-4326-a9d1-f218bd5b4f85","clientId":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"weilim@microsoft.com","createdByType":"User","createdAt":"2024-09-16T18:59:28.8662209Z","lastModifiedBy":"weilim@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-09-16T18:59:28.8662209Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6","name":"mi-7bjev4wfxb2j6","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6","name":"kvf2edecb57bjev4wfxb2j6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:25.203Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:25.203Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6","name":"law-7bjev4wfxb2j6","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6","name":"acr7bjev4wfxb2j6","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:33.1055802Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:33.1055802Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6","name":"cae-7bjev4wfxb2j6","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:45:50.4853648Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:45:50.4853648Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6","name":"cosmos7bjev4wfxb2j6","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-11-04T21:50:35.2656977Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6","name":"storage7bjev4wfxb2j6","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:51:49.4167639Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:51:49.4167639Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:08.4778667Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:08.4778667Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:52:39.2441123Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:52:39.2441123Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6":{"principalId":"2af979e2-25ec-4305-88cb-c9f1c6249f0b","clientId":"54080441-e9fe-42f9-809c-cf1940107c35"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-04T21:53:07.0117831Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-04T21:53:07.0117831Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "6394" + - "6424" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:00:23 GMT + - Mon, 04 Nov 2024 21:53:58 GMT Expires: - "-1" Pragma: @@ -3610,19 +3503,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - f06b460b-1319-4c91-a66d-5fd6517e12d9 + - 96864ec2-63fd-4a6f-9345-c6a38f31fc75 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190024Z:f06b460b-1319-4c91-a66d-5fd6517e12d9 + - WESTUS2:20241104T215358Z:96864ec2-63fd-4a6f-9345-c6a38f31fc75 X-Msedge-Ref: - - 'Ref A: B0D66C6BB9034731B264E40AC2E441DA Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:23Z' + - 'Ref A: 9768378888794A87BAB3C72935F36D1E Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:58Z' status: 200 OK code: 200 - duration: 826.247542ms - - id: 53 + duration: 195.6274ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3643,10 +3538,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-d72e96b?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9954a4?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -3663,11 +3558,11 @@ interactions: Content-Length: - "0" Date: - - Mon, 16 Sep 2024 19:00:24 GMT + - Mon, 04 Nov 2024 21:53:59 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRENzJFOTZCLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638621112862389111&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=ARzU7kCjpuh18qpplrERWuUMs0bGNtOg9fcek6KgPtowAW7_wkEFiHfDFfub6daNYTaoXyiphxBr95zCWn8Ea0ZTuXHcFc_DCIImsQAh2hGPgaPt_mQKPTYvHlNzZdJyCKhQTjYZ5l60SCn3gHHuETRWvBCMwU6xf33nvdxrzT64Clox5pEGpRd03Kdq-bJeCql0NWFbLgEIzdaEnk_iYeW3e7LlOah5iZnhMk_xviMak7U29Ktnfbxj9bVpokf2UJnSASiFPZJCkC4GU44mN3HUlWFPY3ZH_AMsAFfCxfwNDufy23t786xMG7qOuwoFzO2KgbRAWtauLg8QccsOGg&h=Qmq9hDJ0TQDOh6ooGqCRyoYoD5InwGJ7XnYg18mHM1w + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOTk1NEE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663551261148333&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=fg1Fk5vZcRFcWWjGgNoHK-2CnRkkMhF3-QlK_-bh8xJ9j0A5u1pX2OEmRBS3EDPKEXClf0fGjHSKxICexhkcVUggZimPV44aKw-SVfDhJEoui6D3BuPmAedklI5GHAhddtAocNN2jojKZF8AZZsXtPng3w266vb1HCSCj3Z4COx57F_iPT4-V8eNIxSBN55x5ui2CwjC_QXyv91-xmyGJ1qgSskCCFpuQYezRoWEBpv8-8UYXigaT4Oe4kXcJaluQyIJhUl4Yexuhaywo3_uha3FyAwJvXL6zEy5ShV6ZTZjoaUgojfJRG8Y0oNP5Hq-57uK50kZ6G6n48KYZsIATQ&h=1qtm97DAM1pKdX5mn2POClvCeUEdmK-C2qJQZQ3eLUs Pragma: - no-cache Retry-After: @@ -3679,19 +3574,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - 8ee2e833-f6fd-49ac-9ada-06bf7a916817 + - 2b9ac561-74d6-4029-b6ee-cce082d90aaa X-Ms-Routing-Request-Id: - - WESTUS2:20240916T190025Z:8ee2e833-f6fd-49ac-9ada-06bf7a916817 + - WESTUS2:20241104T215400Z:2b9ac561-74d6-4029-b6ee-cce082d90aaa X-Msedge-Ref: - - 'Ref A: 44B865933D7A4E639D5C045A8B851F70 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:00:24Z' + - 'Ref A: 067601DBE43347E39B7DF424C38509D2 Ref B: CO6AA3150217053 Ref C: 2024-11-04T21:53:58Z' status: 202 Accepted code: 202 - duration: 1.26449725s - - id: 54 + duration: 1.2116856s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3710,10 +3607,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRENzJFOTZCLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638621112862389111&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=ARzU7kCjpuh18qpplrERWuUMs0bGNtOg9fcek6KgPtowAW7_wkEFiHfDFfub6daNYTaoXyiphxBr95zCWn8Ea0ZTuXHcFc_DCIImsQAh2hGPgaPt_mQKPTYvHlNzZdJyCKhQTjYZ5l60SCn3gHHuETRWvBCMwU6xf33nvdxrzT64Clox5pEGpRd03Kdq-bJeCql0NWFbLgEIzdaEnk_iYeW3e7LlOah5iZnhMk_xviMak7U29Ktnfbxj9bVpokf2UJnSASiFPZJCkC4GU44mN3HUlWFPY3ZH_AMsAFfCxfwNDufy23t786xMG7qOuwoFzO2KgbRAWtauLg8QccsOGg&h=Qmq9hDJ0TQDOh6ooGqCRyoYoD5InwGJ7XnYg18mHM1w + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOTk1NEE0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663551261148333&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=fg1Fk5vZcRFcWWjGgNoHK-2CnRkkMhF3-QlK_-bh8xJ9j0A5u1pX2OEmRBS3EDPKEXClf0fGjHSKxICexhkcVUggZimPV44aKw-SVfDhJEoui6D3BuPmAedklI5GHAhddtAocNN2jojKZF8AZZsXtPng3w266vb1HCSCj3Z4COx57F_iPT4-V8eNIxSBN55x5ui2CwjC_QXyv91-xmyGJ1qgSskCCFpuQYezRoWEBpv8-8UYXigaT4Oe4kXcJaluQyIJhUl4Yexuhaywo3_uha3FyAwJvXL6zEy5ShV6ZTZjoaUgojfJRG8Y0oNP5Hq-57uK50kZ6G6n48KYZsIATQ&h=1qtm97DAM1pKdX5mn2POClvCeUEdmK-C2qJQZQ3eLUs method: GET response: proto: HTTP/2.0 @@ -3730,7 +3627,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 16 Sep 2024 19:21:40 GMT + - Mon, 04 Nov 2024 22:12:21 GMT Expires: - "-1" Pragma: @@ -3742,19 +3639,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - b9eb02c2-0871-4c12-b429-897960b457d1 + - 6173ddd6-230a-4e82-bda0-78924378599f X-Ms-Routing-Request-Id: - - WESTUS2:20240916T192141Z:b9eb02c2-0871-4c12-b429-897960b457d1 + - WESTUS2:20241104T221221Z:6173ddd6-230a-4e82-bda0-78924378599f X-Msedge-Ref: - - 'Ref A: 8BFCC5375DB24846AABAB3896C1D3CD6 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:21:41Z' + - 'Ref A: 5B73A6B2401849EA97FD955ED78D1AD3 Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:12:21Z' status: 200 OK code: 200 - duration: 201.866917ms - - id: 55 + duration: 276.9615ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3775,10 +3674,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3786,18 +3685,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8320 + content_length: 8489 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-d72e96b","azd-provision-param-hash":"3f7618248ac7b7f3cc1b5eac47d1a16185f49244f2200441387a7ce5f70d92a7"},"properties":{"templateHash":"5559727577912177490","parameters":{"environmentName":{"type":"String","value":"azdtest-d72e96b"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"43bb7435-f8c4-4342-9788-fd15e454ea12"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-16T18:56:56.0598662Z","duration":"PT4M57.8786503S","correlationId":"58d4b3a80c514c22f5a7d71f5e02c407","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-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/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-d72e96b/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"fe3104e6-6ab1-4cd3-8e18-f3aa33c6e72a"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-yvabyidqgqy7c"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-yvabyidqgqy7c"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acryvabyidqgqy7c.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"gentleriver-3807de47.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5yvabyidqgqy7c.vault.azure.net/"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storageyvabyidqgqy7c.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.App/managedEnvironments/cae-yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/cd9c9d2a-ef58-5609-b908-349c9673f6a9"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ContainerRegistry/registries/acryvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/001c1967-7940-5990-9e00-faa32de268ab"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.DocumentDB/databaseAccounts/cosmosyvabyidqgqy7c/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/aa6c13d1-05a0-5e5b-8b33-019edd1b131f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/ecad5ca3-d68f-5167-9220-28f51024cad2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.KeyVault/vaults/kvf2edecb5yvabyidqgqy7c/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.OperationalInsights/workspaces/law-yvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/55c16f02-5bfb-534b-a09c-765055b9acd3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/88dbbfc0-6737-5b5b-ae3f-d5cc255aa90c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-d72e96b/providers/Microsoft.Storage/storageAccounts/storageyvabyidqgqy7c/providers/Microsoft.Authorization/roleAssignments/b2717167-1122-5c14-aac3-2a4108a8977a"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9954a4","azd-provision-param-hash":"e5a7062248eec6eef37ec9b1a83263ff2b0aa542df0b7832487be4a3a5e5d10f"},"properties":{"templateHash":"3447098018377705335","parameters":{"environmentName":{"type":"String","value":"azdtest-w9954a4"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T21:51:16.3059183Z","duration":"PT5M56.1964351S","correlationId":"132b96b234ef0a8020e254142c71ce9a","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-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/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-w9954a4/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"54080441-e9fe-42f9-809c-cf1940107c35"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-7bjev4wfxb2j6"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acr7bjev4wfxb2j6.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acr7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"delightfulglacier-74532064.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb57bjev4wfxb2j6.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb57bjev4wfxb2j6"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storage7bjev4wfxb2j6.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.App/managedEnvironments/cae-7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/a948d4e2-0e48-50f4-b912-25b9cc45567c"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ContainerRegistry/registries/acr7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/9161cf46-272f-5c6c-9bdb-3f0f65dec990"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.DocumentDB/databaseAccounts/cosmos7bjev4wfxb2j6/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/deafb7ed-7da9-5fa9-8acf-c354de98bb2b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/df822f1f-4345-5074-b95c-1e305b3f60fb"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.KeyVault/vaults/kvf2edecb57bjev4wfxb2j6/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.OperationalInsights/workspaces/law-7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/3b9171bf-acb6-5a83-a1c3-0ba968661721"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/4bae44bb-82f3-595f-91c0-c5833b74eae8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9954a4/providers/Microsoft.Storage/storageAccounts/storage7bjev4wfxb2j6/providers/Microsoft.Authorization/roleAssignments/b7344427-9598-5996-956a-037124456b26"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "8320" + - "8489" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:21:42 GMT + - Mon, 04 Nov 2024 22:12:21 GMT Expires: - "-1" Pragma: @@ -3809,19 +3708,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 0ef201b8-4dd8-43d4-a354-5af22db632ff + - fe2a3a42-3f36-46c6-a2af-777cf8bb6526 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T192142Z:0ef201b8-4dd8-43d4-a354-5af22db632ff + - WESTUS2:20241104T221221Z:fe2a3a42-3f36-46c6-a2af-777cf8bb6526 X-Msedge-Ref: - - 'Ref A: 28FD95E08FBD45B5A3941E180E408A15 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:21:42Z' + - 'Ref A: 171C9A4AC1014FB381726D836BDC9F4E Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:12:21Z' status: 200 OK code: 200 - duration: 596.760042ms - - id: 56 + duration: 213.9787ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3832,7 +3733,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-d72e96b"}}' + 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-w9954a4"}}' form: {} headers: Accept: @@ -3846,10 +3747,10 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -3859,10 +3760,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d72e96b"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-09-16T19:21:45.4765373Z","duration":"PT0.0002846S","correlationId":"9b45250a1d72331fa9f9f378e3e176f8","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w9954a4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T22:12:23.4677185Z","duration":"PT0.0005956S","correlationId":"b82a83e4d63c9d368490daf08be8ff98","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656/operationStatuses/08584750923812857430?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618/operationStatuses/08584708485433322375?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -3870,7 +3771,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:21:45 GMT + - Mon, 04 Nov 2024 22:12:23 GMT Expires: - "-1" Pragma: @@ -3882,21 +3783,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 71c02e55-828e-4aad-a2ae-c14bcb3a2e0a + - 44dbd5a3-ed07-446c-9e31-19fedeffa478 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T192145Z:71c02e55-828e-4aad-a2ae-c14bcb3a2e0a + - WESTUS2:20241104T221223Z:44dbd5a3-ed07-446c-9e31-19fedeffa478 X-Msedge-Ref: - - 'Ref A: 717549F1D86F44A1A8FC5E18A4976CE2 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:21:43Z' + - 'Ref A: 482E766D5D3D4289A55F96D31ACBC5B9 Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:12:21Z' status: 200 OK code: 200 - duration: 2.956325834s - - id: 57 + duration: 2.2766923s + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3915,10 +3818,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656/operationStatuses/08584750923812857430?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618/operationStatuses/08584708485433322375?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3937,7 +3840,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:22:16 GMT + - Mon, 04 Nov 2024 22:12:54 GMT Expires: - "-1" Pragma: @@ -3949,19 +3852,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 99722f22-1f75-4160-98fc-20222aff1c22 + - cd9aea87-c2a1-423e-b186-502d68407642 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T192216Z:99722f22-1f75-4160-98fc-20222aff1c22 + - WESTUS2:20241104T221254Z:cd9aea87-c2a1-423e-b186-502d68407642 X-Msedge-Ref: - - 'Ref A: A81EF717694F4E2CBB0D4C6EBEEF31C1 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:22:16Z' + - 'Ref A: 43CD2340475B4744AA0B09977B0ACA9F Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:12:54Z' status: 200 OK code: 200 - duration: 364.668583ms - - id: 58 + duration: 211.9895ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3980,10 +3885,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656?api-version=2021-04-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3991,18 +3896,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 604 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-d72e96b-1726512656","name":"azdtest-d72e96b-1726512656","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-d72e96b"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-09-16T19:21:47.8944425Z","duration":"PT2.4181898S","correlationId":"9b45250a1d72331fa9f9f378e3e176f8","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9954a4-1730756618","name":"azdtest-w9954a4-1730756618","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w9954a4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T22:12:24.215221Z","duration":"PT0.7480981S","correlationId":"b82a83e4d63c9d368490daf08be8ff98","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "605" + - "604" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:22:16 GMT + - Mon, 04 Nov 2024 22:12:54 GMT Expires: - "-1" Pragma: @@ -4014,19 +3919,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 0e95c419-4b1e-47d2-861a-665dc7b2a63f + - 182bec68-32d0-4022-a24d-962465d0a959 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T192216Z:0e95c419-4b1e-47d2-861a-665dc7b2a63f + - WESTUS2:20241104T221254Z:182bec68-32d0-4022-a24d-962465d0a959 X-Msedge-Ref: - - 'Ref A: 20539D175C97419D8ED72D7B0E24D367 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:22:16Z' + - 'Ref A: C242BEEC761042D9AA9A143EE212B50F Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:12:54Z' status: 200 OK code: 200 - duration: 229.06125ms - - id: 59 + duration: 220.3991ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -4049,10 +3956,10 @@ interactions: Content-Length: - "0" User-Agent: - - azsdk-go-armkeyvault/v1.0.0 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armkeyvault/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/kvf2edecb5yvabyidqgqy7c/purge?api-version=2021-10-01 + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/kvf2edecb57bjev4wfxb2j6/purge?api-version=2021-10-01 method: POST response: proto: HTTP/2.0 @@ -4069,11 +3976,11 @@ interactions: Content-Length: - "0" Date: - - Mon, 16 Sep 2024 19:22:16 GMT + - Mon, 04 Nov 2024 22:12:54 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzODYyMTExMzM4MDQ0NDc5N3w2MUNBRUY2QjUxODM0OUQzOUY5OTNEMTE0MEU2QTEwOQ?api-version=2021-10-01&t=638621119467530768&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=GjRk0KKG9CzNhAeQWlDAbH0DX6YEVCf96n020A-VAkbnphHSxUSL8a8f2WSB-R4h5Taw8QJ4PbONpLWX8dKHVYWmdJDO5T0fPAc_RTfehpN42LBJNG-TNVG_THsz4cdUy7nXCPTjg9lngXjRQtJC_7ttOXsh8TEtmVfTSPD0IYeYC9_orPKMZ-9lkdqnv61rK4aZi0lD7vTpUz2_8aAedDd1T7WhA68Y_ttY1816ANZWp89Z7genVe7mHJG54aOvzMs_3HGE9yAYAwWB-nvpDhIUc0Axj3nvfXvhKKr8SgD7xKVluFBC2SQAijr5Db7QnlXeWI3P_Z8U7XNq29-dKA&h=u2KnoUhBVbHob-TGRhvlTzo6pEbe7Te8YXmRZpfdbfk + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzODY2MzU1MTc1Nzk3OTg1OHxGMUFFNDYxNDZFMUY0RjZFOTk4NDIzRkU2NEFEMkE0Qw?api-version=2021-10-01&t=638663557764754064&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=qKiNH9snDWJLIAHCQI-PbRQ8RoF4sw2UKhseh2x-9BLzkzBou_yjOEN1OXvohi8lTgB5XhnCNRtzw6uNpEIKzqiNJkQJsIvlrJ6MWkcStDVgPBRHQFMlzcgWrHChZhwCDhY1u1jURKqkDCf0SS4jcpVA9pwB0cDTnVfdIEVEpY-VkmR6HcVIn0UEzBzptEToQ5tnfLfT5v8vE1VOXyY0qNv0RpxToeC9TPakPVCwuAgvNzP4b9weYy_666r_ap591arXqStsueZiHYT58I9ttHJNupSsKDprLM_Rt311dV3-E31gzQ4PT0kzj_ed7hlxXX8vddHAk2GyaQWOCZ5zzA&h=fVGBU72ah7tWeJddR9nGL7OWqOxP7HuZiYyOfH9csuI Pragma: - no-cache Retry-After: @@ -4087,23 +3994,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 9d786722-7ca9-4931-9f6d-345c878cdd5d + - 6afe7709-27e8-4f7d-bf17-3f1b80acd7eb X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 X-Ms-Keyvault-Service-Version: - - 1.5.1299.0 + - 1.5.1361.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 2641f6da-2afc-4491-a185-de13f296bf65 + - b69fbe80-043c-4aee-bd25-fdd59c67d0b4 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T192217Z:4fe4d4fa-226e-447d-b8fd-5db4d5070db9 + - WESTUS2:20241104T221255Z:d518cbfa-e50e-4270-8aae-36c7c666ee22 X-Msedge-Ref: - - 'Ref A: 4F4AF4C406B84D9FA6A3B953F6490E35 Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:22:16Z' + - 'Ref A: 1E77972B020847CE9B56F9F65DDCB4AC Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:12:54Z' status: 202 Accepted code: 202 - duration: 341.634583ms - - id: 60 + duration: 395.0576ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -4122,10 +4031,10 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.0.0 (go1.23.0; darwin),azdev/0.0.0-dev.0 (Go go1.23.0; darwin/arm64) + - azsdk-go-armkeyvault/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzODYyMTExMzM4MDQ0NDc5N3w2MUNBRUY2QjUxODM0OUQzOUY5OTNEMTE0MEU2QTEwOQ?api-version=2021-10-01&t=638621119467530768&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=GjRk0KKG9CzNhAeQWlDAbH0DX6YEVCf96n020A-VAkbnphHSxUSL8a8f2WSB-R4h5Taw8QJ4PbONpLWX8dKHVYWmdJDO5T0fPAc_RTfehpN42LBJNG-TNVG_THsz4cdUy7nXCPTjg9lngXjRQtJC_7ttOXsh8TEtmVfTSPD0IYeYC9_orPKMZ-9lkdqnv61rK4aZi0lD7vTpUz2_8aAedDd1T7WhA68Y_ttY1816ANZWp89Z7genVe7mHJG54aOvzMs_3HGE9yAYAwWB-nvpDhIUc0Axj3nvfXvhKKr8SgD7xKVluFBC2SQAijr5Db7QnlXeWI3P_Z8U7XNq29-dKA&h=u2KnoUhBVbHob-TGRhvlTzo6pEbe7Te8YXmRZpfdbfk + - b82a83e4d63c9d368490daf08be8ff98 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzODY2MzU1MTc1Nzk3OTg1OHxGMUFFNDYxNDZFMUY0RjZFOTk4NDIzRkU2NEFEMkE0Qw?api-version=2021-10-01&t=638663557764754064&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=qKiNH9snDWJLIAHCQI-PbRQ8RoF4sw2UKhseh2x-9BLzkzBou_yjOEN1OXvohi8lTgB5XhnCNRtzw6uNpEIKzqiNJkQJsIvlrJ6MWkcStDVgPBRHQFMlzcgWrHChZhwCDhY1u1jURKqkDCf0SS4jcpVA9pwB0cDTnVfdIEVEpY-VkmR6HcVIn0UEzBzptEToQ5tnfLfT5v8vE1VOXyY0qNv0RpxToeC9TPakPVCwuAgvNzP4b9weYy_666r_ap591arXqStsueZiHYT58I9ttHJNupSsKDprLM_Rt311dV3-E31gzQ4PT0kzj_ed7hlxXX8vddHAk2GyaQWOCZ5zzA&h=fVGBU72ah7tWeJddR9nGL7OWqOxP7HuZiYyOfH9csuI method: GET response: proto: HTTP/2.0 @@ -4135,7 +4044,7 @@ interactions: trailer: {} content_length: 107 uncompressed: false - body: '{"createdDateTime":"2024-09-16 19:22:17Z","lastActionDateTime":"2024-09-16 19:32:28Z","status":"Succeeded"}' + body: '{"createdDateTime":"2024-11-04 22:12:54Z","lastActionDateTime":"2024-11-04 22:22:59Z","status":"Succeeded"}' headers: Cache-Control: - no-cache @@ -4144,7 +4053,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 16 Sep 2024 19:32:31 GMT + - Mon, 04 Nov 2024 22:23:01 GMT Expires: - "-1" Pragma: @@ -4158,23 +4067,25 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - db5228ad-d841-4438-86c4-bfccfe656839 + - 2efd98b2-fc38-4b5a-b201-ea087326a835 X-Ms-Correlation-Request-Id: - - 9b45250a1d72331fa9f9f378e3e176f8 + - b82a83e4d63c9d368490daf08be8ff98 X-Ms-Keyvault-Service-Version: - - 1.5.1299.0 + - 1.5.1361.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - d182446a-eba5-4760-9cc8-1c02db572d17 + - e53a29bb-70f8-455e-853a-cb66ca5a9b81 X-Ms-Routing-Request-Id: - - WESTUS2:20240916T193231Z:0266b1f0-4775-4924-9d8c-add5b399b408 + - WESTUS2:20241104T222301Z:822cc514-fcbf-4aa4-b766-0f2fb2d707c0 X-Msedge-Ref: - - 'Ref A: 01E2FEAE88B84511962D7A6E28B5E7BC Ref B: CO6AA3150220025 Ref C: 2024-09-16T19:32:31Z' + - 'Ref A: 8BE6862742C3476A9D6A18C1C4EDB148 Ref B: CO6AA3150217053 Ref C: 2024-11-04T22:23:01Z' status: 200 OK code: 200 - duration: 200.516209ms + duration: 205.7396ms --- -env_name: azdtest-d72e96b +env_name: azdtest-w9954a4 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1726512656" +time: "1730756618" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml index f24b9887cc1..aeb5910c856 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvRefresh_NoBicep.yaml @@ -22,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - b0eb4f1b9fd497b22f73c35b97b07fd3 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:41:14 GMT + - Mon, 04 Nov 2024 18:25:59 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - d5e6d61a-893f-41ce-b1ed-22affe19f662 + - 8e76211e-6c54-487a-b243-7779653c2618 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004115Z:d5e6d61a-893f-41ce-b1ed-22affe19f662 + - WESTUS2:20241104T182600Z:8e76211e-6c54-487a-b243-7779653c2618 X-Msedge-Ref: - - 'Ref A: 97C8C61014B04BE8B39ED9F3D2053DE9 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:41:12Z' + - 'Ref A: 1F95C086F6C344A5BF3C71B2AD045F33 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:25:56Z' status: 200 OK code: 200 - duration: 2.7986682s + duration: 4.1431338s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - b0eb4f1b9fd497b22f73c35b97b07fd3 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: 2134835 + content_length: 1782599 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=3ZHRSsMwFIafpbnuoGkmyO6MyQZqTk16Uql3o1bpGlLQjnQdfXc7qw8x787H%2bfjh5z%2bTqvN944%2f7vuk8dm3tv8jmTORdjja%2fXL4e%2buf9Z99chMf6RDaERrcRYDmosVyR%2bMcwXfj7UZZGpt1yJT6Ctq9CWb0GwbkRTuik2CorE0AuNBb3gG%2fvhkL2lCchE3b2KgaiTGGsgho1g0ObQkM1JsODpk6agiukDoy9sdmh2CksmRoty7A6gZABRjWznvPlikzxb4306nu8yH8xx1JjnsMfnYvJgmzBafoG","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2134835" + - "1782599" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:41:22 GMT + - Mon, 04 Nov 2024 18:26:07 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1100" X-Ms-Request-Id: - - 9333ea33-6e35-4af8-82d4-ad5399d8f1df + - 12f348d8-92f6-405c-914e-2247aa5f756e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004123Z:9333ea33-6e35-4af8-82d4-ad5399d8f1df + - WESTUS2:20241104T182607Z:12f348d8-92f6-405c-914e-2247aa5f756e X-Msedge-Ref: - - 'Ref A: 2F837296852449368BBA47B6172115AB Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:41:15Z' + - 'Ref A: BBE02612AB384F05A745D40AD8584ACC Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:00Z' status: 200 OK code: 200 - duration: 8.0310469s + duration: 7.2295993s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZHRSsMwFIafpbnuoGkmyO6MyQZqTk16Uql3o1bpGlLQjnQdfXc7qw8x787H%2bfjh5z%2bTqvN944%2f7vuk8dm3tv8jmTORdjja%2fXL4e%2buf9Z99chMf6RDaERrcRYDmosVyR%2bMcwXfj7UZZGpt1yJT6Ctq9CWb0GwbkRTuik2CorE0AuNBb3gG%2fvhkL2lCchE3b2KgaiTGGsgho1g0ObQkM1JsODpk6agiukDoy9sdmh2CksmRoty7A6gZABRjWznvPlikzxb4306nu8yH8xx1JjnsMfnYvJgmzBafoG + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -165,18 +169,708 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 339142 + content_length: 1738781 + 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1738781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:12 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - 901d14a7-da5a-4152-a932-50eb2c3a22fe + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182613Z:901d14a7-da5a-4152-a932-50eb2c3a22fe + X-Msedge-Ref: + - 'Ref A: F0D232B663B9495A8F9B9925CF7CE6B3 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:07Z' + status: 200 OK + code: 200 + duration: 5.5781239s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1207133" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26: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: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d639daba-3da0-4100-b1d0-d7a580bdb849 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182616Z:d639daba-3da0-4100-b1d0-d7a580bdb849 + X-Msedge-Ref: + - 'Ref A: A164DA48B0C94330807EA29BEED23484 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:13Z' + status: 200 OK + code: 200 + duration: 3.1572488s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128484 + 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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "128484" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:17 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 9c8a81cf-cb80-4b67-b504-3b1c060f2151 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182618Z:9c8a81cf-cb80-4b67-b504-3b1c060f2151 + X-Msedge-Ref: + - 'Ref A: F70A00A694694C0487ED977587F3DCFC Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:16Z' + status: 200 OK + code: 200 + duration: 1.329931s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:18 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d81152d5-95ce-4643-9298-5503b6a78c75 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182618Z:d81152d5-95ce-4643-9298-5503b6a78c75 + X-Msedge-Ref: + - 'Ref A: 6E75888B39F741BEBC5676987F0EFE9D Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:18Z' + status: 200 OK + code: 200 + duration: 645.4135ms + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: - - "339142" + - "12" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:18 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 691085d5-8f34-436f-a834-8b9ef5560196 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182619Z:691085d5-8f34-436f-a834-8b9ef5560196 + X-Msedge-Ref: + - 'Ref A: 0EAB04161D6C47CEAA59CEB30ECA1488 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:18Z' + status: 200 OK + code: 200 + duration: 490.5717ms + - id: 7 + 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-wcc1f79"},"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-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"}}' + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739/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-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:19Z"},"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":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1959" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:20 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: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 8f5d63f5-08d3-4368-8442-e21a3b512ce0 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182621Z:8f5d63f5-08d3-4368-8442-e21a3b512ce0 + X-Msedge-Ref: + - 'Ref A: 218E0AC3A51A42C6B9C0E961D81D6BEC Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:19Z' + status: 200 OK + code: 200 + duration: 2.0334895s + - id: 8 + 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-wcc1f79"},"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-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"}}' + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1554 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T18:26:23.3517177Z","duration":"PT0.0000817S","correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/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-wcc1f79-1730744739/operationStatuses/08584708621036965345?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "1554" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 72360c5e-e29b-4f60-826c-a8ea7b88eeb6 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182623Z:72360c5e-e29b-4f60-826c-a8ea7b88eeb6 + X-Msedge-Ref: + - 'Ref A: 43C88B85F4044D359E83562D541A47DF Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:21Z' + status: 201 Created + code: 201 + duration: 2.4965014s + - id: 9 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739/operationStatuses/08584708621036965345?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: + - Mon, 04 Nov 2024 18:26:53 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - dc877029-b351-4ee0-b2a4-bd12ea2f8f5d + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182654Z:dc877029-b351-4ee0-b2a4-bd12ea2f8f5d + X-Msedge-Ref: + - 'Ref A: EB99EF19A639489E82CF56C7BE2BC7E6 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:54Z' + status: 200 OK + code: 200 + duration: 207.3234ms + - id: 10 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?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-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:26:50.2072677Z","duration":"PT26.8556317S","correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2482" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:26:54 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 8f331b50-aaae-454a-bfb9-51ee5554d0a5 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182654Z:8f331b50-aaae-454a-bfb9-51ee5554d0a5 + X-Msedge-Ref: + - 'Ref A: 814FFEBD35864D6AA95D7B309ABFBE0A Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:54Z' + status: 200 OK + code: 200 + duration: 233.8434ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc1f79%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-wcc1f79","name":"rg-azdtest-wcc1f79","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","DeleteAfter":"2024-11-04T19:26:21Z","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: + - Mon, 04 Nov 2024 18:26:54 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b0eb4f1b9fd497b22f73c35b97b07fd3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - e328a870-3004-4a9c-a561-f8ed087a19f5 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182654Z:e328a870-3004-4a9c-a561-f8ed087a19f5 + X-Msedge-Ref: + - 'Ref A: D0BC3C7C0473487689494A7E64EBCFDC Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:54Z' + status: 200 OK + code: 200 + duration: 53.9169ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 01c7bb959247aa9654455997e92779fc + 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: 1785082 + 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","location":"eastus2","name":"azdtest-wcc1f79-1730744739","properties":{"correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79","resourceName":"rg-azdtest-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT26.8556317S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}],"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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-11-04T19:26:21Z"},"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"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-11-04T18:26:50.2072677Z"},"tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1785082" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:41:24 GMT + - Mon, 04 Nov 2024 18:27:02 GMT Expires: - "-1" Pragma: @@ -188,68 +882,129 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - edace6e4-3a64-42e3-bef6-27a928839dcc + - d61efdc4-203b-4233-9790-22ea0dc5b314 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004125Z:edace6e4-3a64-42e3-bef6-27a928839dcc + - WESTUS2:20241104T182703Z:d61efdc4-203b-4233-9790-22ea0dc5b314 X-Msedge-Ref: - - 'Ref A: B6A66400FD264EAE8EB087BD20C0FB54 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:41:23Z' + - 'Ref A: 1D7FD8627DFC4352A46D6899A980EC8D Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:26:56Z' status: 200 OK code: 200 - duration: 1.8227445s - - id: 3 + duration: 7.107291s + - id: 13 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-wd2eec2"},"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-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 01c7bb959247aa9654455997e92779fc + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1738781 + 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "4683" + - "1738781" Content-Type: - - application/json + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:27: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: + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 2ae4a8f6-9027-4bd2-9923-1cbe06d3d33b + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182708Z:2ae4a8f6-9027-4bd2-9923-1cbe06d3d33b + X-Msedge-Ref: + - 'Ref A: 21083FCF8354496BB61E28D4CD65C61E Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:03Z' + status: 200 OK + code: 200 + duration: 4.771709s + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 - method: PUT + - 01c7bb959247aa9654455997e92779fc + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1554 + content_length: 1207133 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:41:25Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:41:27.5566184Z","duration":"PT0.0005862S","correlationId":"946849dc0f83cc4517b0e758b785a015","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-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd2eec2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664/operationStatuses/08584772331996581933?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1554" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:41:27 GMT + - Mon, 04 Nov 2024 18:27:11 GMT Expires: - "-1" Pragma: @@ -261,21 +1016,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 97ab5639-8e24-4b33-b98a-4d3944e93006 + - 39f78036-7b0b-443f-af1c-4df1142b6241 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004128Z:97ab5639-8e24-4b33-b98a-4d3944e93006 + - WESTUS2:20241104T182712Z:39f78036-7b0b-443f-af1c-4df1142b6241 X-Msedge-Ref: - - 'Ref A: FC392FC8ECD849E398AB7E58C901F12F Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:41:25Z' - status: 201 Created - code: 201 - duration: 2.8995283s - - id: 4 + - 'Ref A: 53BFC02826CE40B3A13556ACA4D2FAC6 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:08Z' + status: 200 OK + code: 200 + duration: 3.5866602s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -294,10 +1049,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664/operationStatuses/08584772331996581933?api-version=2021-04-01 + - 01c7bb959247aa9654455997e92779fc + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -305,18 +1060,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 128484 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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:28 GMT + - Mon, 04 Nov 2024 18:27:13 GMT Expires: - "-1" Pragma: @@ -328,19 +1083,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - f91b285d-386e-4e7c-a39c-c9a3c3549949 + - ea1036cc-8f1a-4a17-a9c6-03cc23c57c8f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004229Z:f91b285d-386e-4e7c-a39c-c9a3c3549949 + - WESTUS2:20241104T182714Z:ea1036cc-8f1a-4a17-a9c6-03cc23c57c8f X-Msedge-Ref: - - 'Ref A: 37028AA22678499488196AEC95B76D7A Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:28Z' + - 'Ref A: E3995C72E9B5474BA3F91DD0D26C8C94 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:12Z' status: 200 OK code: 200 - duration: 339.354ms - - id: 5 + duration: 1.9943952s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -359,10 +1116,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - 01c7bb959247aa9654455997e92779fc + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -370,18 +1127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 537 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:41:25Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:42:07.0324647Z","duration":"PT39.4764325S","correlationId":"946849dc0f83cc4517b0e758b785a015","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-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd2eec2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:28 GMT + - Mon, 04 Nov 2024 18:27:15 GMT Expires: - "-1" Pragma: @@ -393,19 +1150,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 9c94dcd0-7be6-45c5-bcf0-278c46fc1202 + - 287246e9-4c1b-4fa4-b2a3-eca5db486793 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004229Z:9c94dcd0-7be6-45c5-bcf0-278c46fc1202 + - WESTUS2:20241104T182715Z:287246e9-4c1b-4fa4-b2a3-eca5db486793 X-Msedge-Ref: - - 'Ref A: D0F42FD7050F4A849F75BFCA041C9BB0 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:29Z' + - 'Ref A: 5A22FDEA301B420AB07C4B12AE80548A Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:14Z' status: 200 OK code: 200 - duration: 266.3222ms - - id: 6 + duration: 1.4125103s + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 01c7bb959247aa9654455997e92779fc + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: + - Mon, 04 Nov 2024 18:27:15 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3a217157-2d56-455c-910e-241f34aed46c + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182716Z:3a217157-2d56-455c-910e-241f34aed46c + X-Msedge-Ref: + - 'Ref A: 8D2E13C5940B4D839E6A1B405B819CA3 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:15Z' + status: 200 OK + code: 200 + duration: 487.4085ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -426,10 +1252,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd2eec2%27&api-version=2021-04-01 + - 01c7bb959247aa9654455997e92779fc + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -437,18 +1263,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 2482 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2","name":"rg-azdtest-wd2eec2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","DeleteAfter":"2024-08-23T01:41:25Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:26:50.2072677Z","duration":"PT26.8556317S","correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:28 GMT + - Mon, 04 Nov 2024 18:27:15 GMT Expires: - "-1" Pragma: @@ -460,19 +1286,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 946849dc0f83cc4517b0e758b785a015 + - 01c7bb959247aa9654455997e92779fc + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 470f82c6-c26e-4597-bbc5-4d325a781c07 + - c3376544-f5c2-4494-bc91-5008c542e319 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004229Z:470f82c6-c26e-4597-bbc5-4d325a781c07 + - WESTUS2:20241104T182716Z:c3376544-f5c2-4494-bc91-5008c542e319 X-Msedge-Ref: - - 'Ref A: A23F2982DC8644DCAC8D7612BD619EE9 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:29Z' + - 'Ref A: 0FD65A249AD7474781E0374DAE6B4668 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:16Z' status: 200 OK code: 200 - duration: 93.9731ms - - id: 7 + duration: 182.2563ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -493,9 +1321,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 6cf05ce5b5a0fd251d445f89fa1edcfc + - d4312aa0c3ebfa473a34f0b9b7fca4e5 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 +1332,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2137390 + content_length: 1785082 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=3ZFBT4NAEIV%2fS%2ffcJixoY3qT7lZTnYEdZtfgraHVUAgkSgOl6X%2bXWvkDxpO3eZmXl%2fflnURWV01eHTZNXldcF7vqUyxOQt8nbJPLVe26Jt58NPnF8LQ7ioWQk7sJctpBn87E9NtBdTv%2bZOBPqFiFoN5bY18VWHODKgxJlcp4bgVWe8ihMuyWyNs3khg9J14bKTv4sgBV6mOftdCbAPeFj7k07HVrI0tNLgSWJZK9tdHePQCnAfQ2iDg7otIt9jBoM%2bTrmThPfzD8X3LM%2f4DD9MjQDb0kJHLs%2f0iOEnIYO7dWA1PCMlzZktbkYA4FsbOpZL1dkpVMBcUXlhf9Lya5YgyTVIeyHKmCqzyfvwA%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","location":"eastus2","name":"azdtest-wd2eec2-1724373664","properties":{"correlationId":"946849dc0f83cc4517b0e758b785a015","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2","resourceName":"rg-azdtest-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT39.4764325S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}],"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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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:41:25Z"},"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"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:42:07.0324647Z"},"tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","location":"eastus2","name":"azdtest-wcc1f79-1730744739","properties":{"correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79","resourceName":"rg-azdtest-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT26.8556317S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}],"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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-11-04T19:26:21Z"},"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"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-11-04T18:26:50.2072677Z"},"tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2137390" + - "1785082" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:36 GMT + - Mon, 04 Nov 2024 18:27:26 GMT Expires: - "-1" Pragma: @@ -527,19 +1355,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6cf05ce5b5a0fd251d445f89fa1edcfc + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1100" X-Ms-Request-Id: - - 88a9ef39-8848-42fe-9428-00ba3b5cb10f + - 9624674c-a3e4-456f-895c-9fb4cdac26c5 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004237Z:88a9ef39-8848-42fe-9428-00ba3b5cb10f + - WESTUS2:20241104T182727Z:9624674c-a3e4-456f-895c-9fb4cdac26c5 X-Msedge-Ref: - - 'Ref A: EBD43F2FBD2D435BB60A1CE770C14F74 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:30Z' + - 'Ref A: 9F07BD7CADBA4E4D97D583B6216BEE69 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:20Z' status: 200 OK code: 200 - duration: 6.5709877s - - id: 8 + duration: 7.2920891s + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -558,10 +1388,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 6cf05ce5b5a0fd251d445f89fa1edcfc - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZFBT4NAEIV%2fS%2ffcJixoY3qT7lZTnYEdZtfgraHVUAgkSgOl6X%2bXWvkDxpO3eZmXl%2fflnURWV01eHTZNXldcF7vqUyxOQt8nbJPLVe26Jt58NPnF8LQ7ioWQk7sJctpBn87E9NtBdTv%2bZOBPqFiFoN5bY18VWHODKgxJlcp4bgVWe8ihMuyWyNs3khg9J14bKTv4sgBV6mOftdCbAPeFj7k07HVrI0tNLgSWJZK9tdHePQCnAfQ2iDg7otIt9jBoM%2bTrmThPfzD8X3LM%2f4DD9MjQDb0kJHLs%2f0iOEnIYO7dWA1PCMlzZktbkYA4FsbOpZL1dkpVMBcUXlhf9Lya5YgyTVIeyHKmCqzyfvwA%3d + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -569,18 +1399,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 339142 + content_length: 1738781 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "339142" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:38 GMT + - Mon, 04 Nov 2024 18:27:32 GMT Expires: - "-1" Pragma: @@ -592,19 +1422,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6cf05ce5b5a0fd251d445f89fa1edcfc + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - f6a54ee4-ad36-4b31-ae5f-3ec1d520501b + - d12cd3ff-2a5f-4d25-b617-e4ab4fb34e87 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004239Z:f6a54ee4-ad36-4b31-ae5f-3ec1d520501b + - WESTUS2:20241104T182733Z:d12cd3ff-2a5f-4d25-b617-e4ab4fb34e87 X-Msedge-Ref: - - 'Ref A: 9C2CC873210146F7903C467D3E0AD23F Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:37Z' + - 'Ref A: F2235821F65F47B58A7156A38D2E7003 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:27Z' status: 200 OK code: 200 - duration: 1.7650361s - - id: 9 + duration: 5.3363993s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -618,17 +1450,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 6cf05ce5b5a0fd251d445f89fa1edcfc - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -636,18 +1466,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 1207133 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:41:25Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:42:07.0324647Z","duration":"PT39.4764325S","correlationId":"946849dc0f83cc4517b0e758b785a015","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-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd2eec2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:38 GMT + - Mon, 04 Nov 2024 18:27:35 GMT Expires: - "-1" Pragma: @@ -659,19 +1489,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6cf05ce5b5a0fd251d445f89fa1edcfc + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 329b1bf8-a6fd-48b1-a641-fec8ca1e50c0 + - 2c4e2cf3-c5bb-458a-a337-9c6557d8e886 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004239Z:329b1bf8-a6fd-48b1-a641-fec8ca1e50c0 + - WESTUS2:20241104T182736Z:2c4e2cf3-c5bb-458a-a337-9c6557d8e886 X-Msedge-Ref: - - 'Ref A: EACFB5DC61604D5BA08E904CED04CFB4 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:39Z' + - 'Ref A: 8351936AFE91409982AD0D199F474791 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:33Z' status: 200 OK code: 200 - duration: 225.8447ms - - id: 10 + duration: 3.1767171s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -685,17 +1517,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -703,18 +1533,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2137390 + content_length: 128484 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=3ZFBT4NAEIV%2fS%2ffcJixoY3qT7lZTnYEdZtfgraHVUAgkSgOl6X%2bXWvkDxpO3eZmXl%2fflnURWV01eHTZNXldcF7vqUyxOQt8nbJPLVe26Jt58NPnF8LQ7ioWQk7sJctpBn87E9NtBdTv%2bZOBPqFiFoN5bY18VWHODKgxJlcp4bgVWe8ihMuyWyNs3khg9J14bKTv4sgBV6mOftdCbAPeFj7k07HVrI0tNLgSWJZK9tdHePQCnAfQ2iDg7otIt9jBoM%2bTrmThPfzD8X3LM%2f4DD9MjQDb0kJHLs%2f0iOEnIYO7dWA1PCMlzZktbkYA4FsbOpZL1dkpVMBcUXlhf9Lya5YgyTVIeyHKmCqzyfvwA%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","location":"eastus2","name":"azdtest-wd2eec2-1724373664","properties":{"correlationId":"946849dc0f83cc4517b0e758b785a015","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2","resourceName":"rg-azdtest-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT39.4764325S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}],"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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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:41:25Z"},"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"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:42:07.0324647Z"},"tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2137390" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:49 GMT + - Mon, 04 Nov 2024 18:27:37 GMT Expires: - "-1" Pragma: @@ -726,19 +1556,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 2d3f5393-1cc2-4f02-a353-d00a400554b0 + - f3a52d09-9ec0-4c19-a234-4d4d8bedf9c7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004250Z:2d3f5393-1cc2-4f02-a353-d00a400554b0 + - WESTUS2:20241104T182737Z:f3a52d09-9ec0-4c19-a234-4d4d8bedf9c7 X-Msedge-Ref: - - 'Ref A: 6DDC9E3C9B1C4ADC923AC308CDB487A0 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:41Z' + - 'Ref A: 4E1714259D3C4370A8CDED7697BB0CDB Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:36Z' status: 200 OK code: 200 - duration: 8.3763088s - - id: 11 + duration: 1.4097725s + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:27: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: + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3fec9627-cab5-4c83-b06f-a1fc0d30fd24 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T182738Z:3fec9627-cab5-4c83-b06f-a1fc0d30fd24 + X-Msedge-Ref: + - 'Ref A: 417E8960DF234DDE80D360155201102C Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:37Z' + status: 200 OK + code: 200 + duration: 406.5754ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -757,10 +1656,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZFBT4NAEIV%2fS%2ffcJixoY3qT7lZTnYEdZtfgraHVUAgkSgOl6X%2bXWvkDxpO3eZmXl%2fflnURWV01eHTZNXldcF7vqUyxOQt8nbJPLVe26Jt58NPnF8LQ7ioWQk7sJctpBn87E9NtBdTv%2bZOBPqFiFoN5bY18VWHODKgxJlcp4bgVWe8ihMuyWyNs3khg9J14bKTv4sgBV6mOftdCbAPeFj7k07HVrI0tNLgSWJZK9tdHePQCnAfQ2iDg7otIt9jBoM%2bTrmThPfzD8X3LM%2f4DD9MjQDb0kJHLs%2f0iOEnIYO7dWA1PCMlzZktbkYA4FsbOpZL1dkpVMBcUXlhf9Lya5YgyTVIeyHKmCqzyfvwA%3d + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -768,18 +1667,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 339142 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "339142" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:51 GMT + - Mon, 04 Nov 2024 18:27:38 GMT Expires: - "-1" Pragma: @@ -791,19 +1690,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 693dcbfd-ff85-4022-954f-6756b8856324 + - 398a8fd4-1bed-49a8-9b48-6660f70a778b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004252Z:693dcbfd-ff85-4022-954f-6756b8856324 + - WESTUS2:20241104T182738Z:398a8fd4-1bed-49a8-9b48-6660f70a778b X-Msedge-Ref: - - 'Ref A: 6F970F4FF1DB445CBC623B3B00CB6990 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:50Z' + - 'Ref A: 355D03FF1D63416F82C260485461AD50 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:38Z' status: 200 OK code: 200 - duration: 1.9004119s - - id: 12 + duration: 372.3735ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -824,10 +1725,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -837,7 +1738,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:41:25Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:42:07.0324647Z","duration":"PT39.4764325S","correlationId":"946849dc0f83cc4517b0e758b785a015","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-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd2eec2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:26:50.2072677Z","duration":"PT26.8556317S","correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}]}}' headers: Cache-Control: - no-cache @@ -846,7 +1747,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:51 GMT + - Mon, 04 Nov 2024 18:27:38 GMT Expires: - "-1" Pragma: @@ -858,19 +1759,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 092023d7-49d9-4eee-8d3d-1cad6ff795e4 + - 8892b669-8ecc-473e-b9da-e92ddcd5b7d9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004252Z:092023d7-49d9-4eee-8d3d-1cad6ff795e4 + - WESTUS2:20241104T182738Z:8892b669-8ecc-473e-b9da-e92ddcd5b7d9 X-Msedge-Ref: - - 'Ref A: C45CA658EF6F4E6DA2974EE4A8F09E9D Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:52Z' + - 'Ref A: 0767AA2B972449299B89BA5847A99FCA Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:38Z' status: 200 OK code: 200 - duration: 376.496ms - - id: 13 + duration: 198.2192ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -891,10 +1794,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd2eec2%27&api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc1f79%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -904,7 +1807,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2","name":"rg-azdtest-wd2eec2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","DeleteAfter":"2024-08-23T01:41:25Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79","name":"rg-azdtest-wcc1f79","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","DeleteAfter":"2024-11-04T19:26:21Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -913,7 +1816,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:51 GMT + - Mon, 04 Nov 2024 18:27:38 GMT Expires: - "-1" Pragma: @@ -925,19 +1828,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 790075ea-2c11-4f6e-bde0-71cbcdc1e77d + - 8e20d984-4ef6-427f-b8b9-81c56f8a17f7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004252Z:790075ea-2c11-4f6e-bde0-71cbcdc1e77d + - WESTUS2:20241104T182739Z:8e20d984-4ef6-427f-b8b9-81c56f8a17f7 X-Msedge-Ref: - - 'Ref A: EB031E2A48ED4439931FD7A266605C99 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:52Z' + - 'Ref A: 4E7105385416446AA701403B53F2BBF5 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:38Z' status: 200 OK code: 200 - duration: 70.6662ms - - id: 14 + duration: 65.9616ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -958,10 +1863,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/resources?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -971,7 +1876,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4","name":"stbafqemtk2ywn4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk","name":"st35cj26xmknlvk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79"}}]}' headers: Cache-Control: - no-cache @@ -980,7 +1885,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:52 GMT + - Mon, 04 Nov 2024 18:27:38 GMT Expires: - "-1" Pragma: @@ -992,19 +1897,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6cdbece6-b00c-4f10-81e0-a938bea3539b + - 288a1ee5-b2a8-4fad-85e9-52cbd3adefdc X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004253Z:6cdbece6-b00c-4f10-81e0-a938bea3539b + - WESTUS2:20241104T182739Z:288a1ee5-b2a8-4fad-85e9-52cbd3adefdc X-Msedge-Ref: - - 'Ref A: CF405BE60EB14666BE11C8E17D59B9E8 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:52Z' + - 'Ref A: 3E02B081F2C941149AE2A1E972A160F7 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:39Z' status: 200 OK code: 200 - duration: 602.0252ms - - id: 15 + duration: 183.9664ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1025,10 +1932,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1038,7 +1945,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:41:25Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:42:07.0324647Z","duration":"PT39.4764325S","correlationId":"946849dc0f83cc4517b0e758b785a015","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-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd2eec2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:26:50.2072677Z","duration":"PT26.8556317S","correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}]}}' headers: Cache-Control: - no-cache @@ -1047,7 +1954,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:52 GMT + - Mon, 04 Nov 2024 18:27:38 GMT Expires: - "-1" Pragma: @@ -1059,19 +1966,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - dca200d3-a68f-4c4c-8e1a-62b592e25bbc + - bfc4d304-e7dd-4d5a-8a55-d6179d3a5429 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004253Z:dca200d3-a68f-4c4c-8e1a-62b592e25bbc + - WESTUS2:20241104T182739Z:bfc4d304-e7dd-4d5a-8a55-d6179d3a5429 X-Msedge-Ref: - - 'Ref A: CAC4D5437E21438F97B2E0410B996829 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:53Z' + - 'Ref A: 9166B8715DA3414A91FAC96FFA4ABE15 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:39Z' status: 200 OK code: 200 - duration: 218.7095ms - - id: 16 + duration: 190.2032ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1092,10 +2001,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd2eec2%27&api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wcc1f79%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1105,7 +2014,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2","name":"rg-azdtest-wd2eec2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","DeleteAfter":"2024-08-23T01:41:25Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79","name":"rg-azdtest-wcc1f79","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","DeleteAfter":"2024-11-04T19:26:21Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1114,7 +2023,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:52 GMT + - Mon, 04 Nov 2024 18:27:39 GMT Expires: - "-1" Pragma: @@ -1126,19 +2035,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1098" X-Ms-Request-Id: - - c884c7c2-9f91-4eb1-a6fd-87be2da03895 + - ae100254-ded1-4008-a311-58d0fd37713b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004253Z:c884c7c2-9f91-4eb1-a6fd-87be2da03895 + - WESTUS2:20241104T182739Z:ae100254-ded1-4008-a311-58d0fd37713b X-Msedge-Ref: - - 'Ref A: AA49ED6505544C5B9ECDFD9577D5AE99 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:53Z' + - 'Ref A: DD20CD052F6748B1B88C5E7CD3FBF5DD Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:39Z' status: 200 OK code: 200 - duration: 96.2266ms - - id: 17 + duration: 76.3857ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1159,10 +2070,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/resources?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1172,7 +2083,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4","name":"stbafqemtk2ywn4","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk","name":"st35cj26xmknlvk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79"}}]}' headers: Cache-Control: - no-cache @@ -1181,7 +2092,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:42:53 GMT + - Mon, 04 Nov 2024 18:27:39 GMT Expires: - "-1" Pragma: @@ -1193,19 +2104,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 726dee16-cc0c-4b13-a5e2-6212a34ac1b9 + - b2f07114-05da-4d16-8627-6f6db2da247f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004254Z:726dee16-cc0c-4b13-a5e2-6212a34ac1b9 + - WESTUS2:20241104T182739Z:b2f07114-05da-4d16-8627-6f6db2da247f X-Msedge-Ref: - - 'Ref A: 01E5BCE250734B8C93813D30F92AE616 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:53Z' + - 'Ref A: 62E6400643C24F16A6E4031EB17692A1 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:39Z' status: 200 OK code: 200 - duration: 598.7947ms - - id: 18 + duration: 250.3416ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1226,10 +2139,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd2eec2?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wcc1f79?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1246,11 +2159,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:42:54 GMT + - Mon, 04 Nov 2024 18:27:40 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRDJFRUMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599706992016647&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=aHm1Wr6HZVBn7T42KnRhESSYItG6cMXI3T4RuSBUCg_B7BXuwvXWtdSCa15SPYLEACAobnsr8JsaENZY4d2GJv11hOu3r4ngxyPWxPiOx2VGBln5aHSuKfw9qZMK4UTkInUOOS9czA96jL0jJhuj-oHEgmZAAkvuIaJFVaL7qUUl0I3Q0_v_fzurATmAjGS-e55_GsZTpmoeIQ2sx1tfjlvYHQaAuJKVqrMdeUl5H0_EJIiIO9rlDcFV9qBRN8Q3ffnOoDS9vd_UjnUpQNjExzi3sjeXmuX8Aeu_4PXnM94sdT_W4ojRTzDf4VRV1SNGqWlbMFhS7WbEXoKeh2VwxQ&h=6EQfyn3U-sBVWfHj0iCHTmFpDdTx0yHTUJZ-EjNTIsI + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQ0MxRjc5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663417221815040&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ngJbeHpD0qpAfc2i47jGbsdBtPaU5fiNvYf6-LUGXOaD_SHCmarqcP5emmbGJehhvmW95hOX4hDCN3facxPyJVkstf2IHKKmx2gCFKvNFQMis9WdIDoV0qioouv2R_TN6wSyEHG3t1SWrdgOF6S0RVvlwdn-XoW7oT5sPUVUCRfD5ZYZ2ChVSfTHW65Jc-i60CnU0lpJnGz6CdcDmF7Lbp9czpwKqn3Y-6LI1jR1PFXyTZDN8n0qmeilJ0LONFH2SDDsS7vCn2MCogpjvZ7BVg9zW2GAP3VTD8w0hJk-MSjEyQmZe_nIbOJ7-xqUdLE2tWC63zESHUgdefAUFBDexw&h=kl_ooP3Xwh0sUFQ5Vij1T3-iXUQLL5Hkg1Ux41jsBoU Pragma: - no-cache Retry-After: @@ -1262,19 +2175,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - d85a5d52-cd4e-47ee-addd-6aea4ac5c7f6 + - 849e0e8f-4a1d-4c9e-b362-68588cd02af7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004255Z:d85a5d52-cd4e-47ee-addd-6aea4ac5c7f6 + - WESTUS2:20241104T182740Z:849e0e8f-4a1d-4c9e-b362-68588cd02af7 X-Msedge-Ref: - - 'Ref A: 6833287882214A828CEC7A830CD6ADDB Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:42:54Z' + - 'Ref A: 0827FDED9B3844AE89129F2FEEB03F3D Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:27:39Z' status: 202 Accepted code: 202 - duration: 1.4724311s - - id: 19 + duration: 1.1791455s + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1293,10 +2208,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRDJFRUMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599706992016647&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=aHm1Wr6HZVBn7T42KnRhESSYItG6cMXI3T4RuSBUCg_B7BXuwvXWtdSCa15SPYLEACAobnsr8JsaENZY4d2GJv11hOu3r4ngxyPWxPiOx2VGBln5aHSuKfw9qZMK4UTkInUOOS9czA96jL0jJhuj-oHEgmZAAkvuIaJFVaL7qUUl0I3Q0_v_fzurATmAjGS-e55_GsZTpmoeIQ2sx1tfjlvYHQaAuJKVqrMdeUl5H0_EJIiIO9rlDcFV9qBRN8Q3ffnOoDS9vd_UjnUpQNjExzi3sjeXmuX8Aeu_4PXnM94sdT_W4ojRTzDf4VRV1SNGqWlbMFhS7WbEXoKeh2VwxQ&h=6EQfyn3U-sBVWfHj0iCHTmFpDdTx0yHTUJZ-EjNTIsI + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQ0MxRjc5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663417221815040&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ngJbeHpD0qpAfc2i47jGbsdBtPaU5fiNvYf6-LUGXOaD_SHCmarqcP5emmbGJehhvmW95hOX4hDCN3facxPyJVkstf2IHKKmx2gCFKvNFQMis9WdIDoV0qioouv2R_TN6wSyEHG3t1SWrdgOF6S0RVvlwdn-XoW7oT5sPUVUCRfD5ZYZ2ChVSfTHW65Jc-i60CnU0lpJnGz6CdcDmF7Lbp9czpwKqn3Y-6LI1jR1PFXyTZDN8n0qmeilJ0LONFH2SDDsS7vCn2MCogpjvZ7BVg9zW2GAP3VTD8w0hJk-MSjEyQmZe_nIbOJ7-xqUdLE2tWC63zESHUgdefAUFBDexw&h=kl_ooP3Xwh0sUFQ5Vij1T3-iXUQLL5Hkg1Ux41jsBoU method: GET response: proto: HTTP/2.0 @@ -1313,7 +2228,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:45:13 GMT + - Mon, 04 Nov 2024 18:28:57 GMT Expires: - "-1" Pragma: @@ -1325,19 +2240,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 5609a05a-0837-4472-9a39-c9771618723a + - df69397d-0f9a-4703-9e1f-200e1c8b869f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004514Z:5609a05a-0837-4472-9a39-c9771618723a + - WESTUS2:20241104T182857Z:df69397d-0f9a-4703-9e1f-200e1c8b869f X-Msedge-Ref: - - 'Ref A: 418FF3419ACD4F5BADCB4C9205DE8138 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:45:14Z' + - 'Ref A: 671E3BE2874446DB8A4026857F909CBC Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:28:57Z' status: 200 OK code: 200 - duration: 262.9581ms - - id: 20 + duration: 434.3209ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1358,10 +2275,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1371,7 +2288,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd2eec2","azd-provision-param-hash":"9ab8f55c411660807bce511bce378c8c8a6c6738d5d4ca18661e9e49d52d9925"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd2eec2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:41:25Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:42:07.0324647Z","duration":"PT39.4764325S","correlationId":"946849dc0f83cc4517b0e758b785a015","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-wd2eec2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd2eec2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/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-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stbafqemtk2ywn4"},"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-wd2eec2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd2eec2/providers/Microsoft.Storage/storageAccounts/stbafqemtk2ywn4"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wcc1f79","azd-provision-param-hash":"25d33fa17e286e7033642be8baae823727d2805f6ba8ca5c20e0c319242f3b01"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wcc1f79"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:26:21Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:26:50.2072677Z","duration":"PT26.8556317S","correlationId":"b0eb4f1b9fd497b22f73c35b97b07fd3","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-wcc1f79","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wcc1f79"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/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-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st35cj26xmknlvk"},"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-wcc1f79"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wcc1f79/providers/Microsoft.Storage/storageAccounts/st35cj26xmknlvk"}]}}' headers: Cache-Control: - no-cache @@ -1380,7 +2297,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:45:13 GMT + - Mon, 04 Nov 2024 18:28:57 GMT Expires: - "-1" Pragma: @@ -1392,19 +2309,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 4fe91b50-3ef3-4c6f-a785-3801e0a46e2b + - 5273c46d-7a30-489d-8a75-c37ad3dada95 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004514Z:4fe91b50-3ef3-4c6f-a785-3801e0a46e2b + - WESTUS2:20241104T182858Z:5273c46d-7a30-489d-8a75-c37ad3dada95 X-Msedge-Ref: - - 'Ref A: DF598AA4AA964638B1887E561BFC863D Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:45:14Z' + - 'Ref A: 40D9D11046724941A6EF6BAEF239B850 Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:28:57Z' status: 200 OK code: 200 - duration: 184.9762ms - - id: 21 + duration: 351.4678ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1415,7 +2334,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-wd2eec2"}}' + 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-wcc1f79"}}' form: {} headers: Accept: @@ -1429,10 +2348,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1440,20 +2359,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-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wd2eec2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:45:16.818157Z","duration":"PT0.0004801S","correlationId":"714d50dfd6f13014b32a87aea7680172","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc1f79"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T18:29:00.0105801Z","duration":"PT0.0009076S","correlationId":"d4312aa0c3ebfa473a34f0b9b7fca4e5","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664/operationStatuses/08584772329699032744?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739/operationStatuses/08584708619469503892?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:45:16 GMT + - Mon, 04 Nov 2024 18:28:59 GMT Expires: - "-1" Pragma: @@ -1465,21 +2384,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 8ce75aa4-d58f-4619-afe0-b4ac28ce0553 + - ed2cc09d-6b42-4600-a1b8-30862d3ac752 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004517Z:8ce75aa4-d58f-4619-afe0-b4ac28ce0553 + - WESTUS2:20241104T182900Z:ed2cc09d-6b42-4600-a1b8-30862d3ac752 X-Msedge-Ref: - - 'Ref A: 733AD6FDDACA4F26BBC3B8C2E23211B3 Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:45:14Z' + - 'Ref A: F353F5F137A7447BA8D24CA2DF5DD34A Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:28:58Z' status: 200 OK code: 200 - duration: 2.5521793s - - id: 22 + duration: 2.4234618s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1498,10 +2419,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664/operationStatuses/08584772329699032744?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739/operationStatuses/08584708619469503892?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1520,7 +2441,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:45:16 GMT + - Mon, 04 Nov 2024 18:29:30 GMT Expires: - "-1" Pragma: @@ -1532,19 +2453,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 90d64166-b585-4af0-ab2f-ab88c2eb234c + - 9bec7389-0775-4f5e-ae88-af048c049d28 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004517Z:90d64166-b585-4af0-ab2f-ab88c2eb234c + - WESTUS2:20241104T182930Z:9bec7389-0775-4f5e-ae88-af048c049d28 X-Msedge-Ref: - - 'Ref A: A95E48277E734CFA82E0E79DF1D39EAC Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:45:17Z' + - 'Ref A: 5B2E17F4F5E64517BA7A1A39D1DCF23D Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:29:30Z' status: 200 OK code: 200 - duration: 369.0669ms - - id: 23 + duration: 284.8445ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1563,10 +2486,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd2eec2-1724373664?api-version=2021-04-01 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1574,18 +2497,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-wd2eec2-1724373664","name":"azdtest-wd2eec2-1724373664","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wd2eec2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:45:17.449553Z","duration":"PT0.6318761S","correlationId":"714d50dfd6f13014b32a87aea7680172","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wcc1f79-1730744739","name":"azdtest-wcc1f79-1730744739","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wcc1f79"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:29:00.6381418Z","duration":"PT0.6284693S","correlationId":"d4312aa0c3ebfa473a34f0b9b7fca4e5","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:45:16 GMT + - Mon, 04 Nov 2024 18:29:30 GMT Expires: - "-1" Pragma: @@ -1597,19 +2520,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 714d50dfd6f13014b32a87aea7680172 + - d4312aa0c3ebfa473a34f0b9b7fca4e5 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 95753ec5-35c8-49fc-85f8-a73998d5f194 + - 7931c522-33a5-418f-ad88-ab7c620ef566 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T004517Z:95753ec5-35c8-49fc-85f8-a73998d5f194 + - WESTUS2:20241104T182931Z:7931c522-33a5-418f-ad88-ab7c620ef566 X-Msedge-Ref: - - 'Ref A: 5A16D59A065D4C77912723B769BD0EDD Ref B: CO6AA3150217047 Ref C: 2024-08-23T00:45:17Z' + - 'Ref A: AD123CFB87654051B96F4748B328216C Ref B: CO6AA3150219027 Ref C: 2024-11-04T18:29:30Z' status: 200 OK code: 200 - duration: 212.149ms + duration: 248.1523ms --- -env_name: azdtest-wd2eec2 +env_name: azdtest-wcc1f79 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724373664" +time: "1730744739" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml index 0a4fed318af..35c7d8bfe21 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraBicepParam.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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:14:16 GMT + - Mon, 04 Nov 2024 18:40:40 GMT Expires: - "-1" Pragma: @@ -56,19 +56,709 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3d073482-e7ff-404d-948b-58753ad2deb9 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184040Z:3d073482-e7ff-404d-948b-58753ad2deb9 + X-Msedge-Ref: + - 'Ref A: 97E857C69CB448A99E5A4E144A0CAB3D Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:40:37Z' + status: 200 OK + code: 200 + duration: 2.9394499s + - id: 1 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + 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: 1783810 + 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1783810" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:40:48 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: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - a56f1334-7ffc-4443-9481-3fb6c12fd28f + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184049Z:a56f1334-7ffc-4443-9481-3fb6c12fd28f + X-Msedge-Ref: + - 'Ref A: 3AEB4F332933497C84F10EE57D751CB8 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:40:40Z' + status: 200 OK + code: 200 + duration: 8.3754451s + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1738781 + 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1738781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:40:52 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: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 85625ec0-c8fe-44c8-a3ea-39cf07ac218a + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184053Z:85625ec0-c8fe-44c8-a3ea-39cf07ac218a + X-Msedge-Ref: + - 'Ref A: 07BACBD9F8704581B026E1903A782C22 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:40:49Z' + status: 200 OK + code: 200 + duration: 4.3856781s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1207133" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:40:56 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4a130ca7-870a-4412-934b-eb1ca2886793 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184057Z:4a130ca7-870a-4412-934b-eb1ca2886793 + X-Msedge-Ref: + - 'Ref A: 741C76858A8D4E279F7B449ABBD1C050 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:40:53Z' + status: 200 OK + code: 200 + duration: 3.5131731s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128484 + 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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "128484" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:40:58 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - e4588d55-f313-43b5-959a-1e7244796a55 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184058Z:e4588d55-f313-43b5-959a-1e7244796a55 + X-Msedge-Ref: + - 'Ref A: 7A44B4476A4C4049A08212272A626307 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:40:57Z' + status: 200 OK + code: 200 + duration: 1.3259249s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:40:59 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 862a40e1-5c7a-4567-9c7a-be87107233b2 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184100Z:862a40e1-5c7a-4567-9c7a-be87107233b2 + X-Msedge-Ref: + - 'Ref A: 04F1DEF0D969480C80F4B8E4F7134735 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:40:58Z' + status: 200 OK + code: 200 + duration: 1.2903761s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: + - Mon, 04 Nov 2024 18:40:59 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - cb69780a-8c54-430b-ae86-622095ca8223 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184100Z:cb69780a-8c54-430b-ae86-622095ca8223 + X-Msedge-Ref: + - 'Ref A: 3A43AA35CB194905B6C78AE2AB780BC8 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:41:00Z' + status: 200 OK + code: 200 + duration: 513.1755ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4313 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w9d007a"},"intTagValue":{"value":678},"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":"15552207553737481855"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.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-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4313" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1883 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:01Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1883" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:41:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 2270799b-120b-4dc7-933d-37fc59689e24 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184102Z:2270799b-120b-4dc7-933d-37fc59689e24 + X-Msedge-Ref: + - 'Ref A: 0756A564C2844B9A84B74392F8172312 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:41:00Z' + status: 200 OK + code: 200 + duration: 1.9728235s + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4313 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-w9d007a"},"intTagValue":{"value":678},"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":"15552207553737481855"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.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-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4313" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1478 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:03Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T18:41:05.3711291Z","duration":"PT0.0004847S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/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-w9d007a-1730745624/operationStatuses/08584708612222720469?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "1478" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:41:05 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 1b07d590-d551-4d76-9408-b7171050dbbe + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184106Z:1b07d590-d551-4d76-9408-b7171050dbbe + X-Msedge-Ref: + - 'Ref A: D8039BB0EBE94331B86CF9BC6D7C3EA8 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:41:02Z' + status: 201 Created + code: 201 + duration: 3.6905276s + - id: 9 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624/operationStatuses/08584708612222720469?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: + - Mon, 04 Nov 2024 18:42:06 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f4781d09-a3dd-4c88-ad84-fb51fbed7bba + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184207Z:f4781d09-a3dd-4c88-ad84-fb51fbed7bba + X-Msedge-Ref: + - 'Ref A: C150718965CB43D5ABD245F4227C1BFC Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:06Z' + status: 200 OK + code: 200 + duration: 204.1582ms + - id: 10 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2405 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:03Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:41:38.649785Z","duration":"PT33.2791406S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2405" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:42:06 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - f60a0606-c551-48c5-96ca-9806b6bbc1af + - 5a3dbe4d-6663-4a5f-9120-7659fcdd06f0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001417Z:f60a0606-c551-48c5-96ca-9806b6bbc1af + - WESTUS2:20241104T184207Z:5a3dbe4d-6663-4a5f-9120-7659fcdd06f0 X-Msedge-Ref: - - 'Ref A: B780B53803524DF19BF133C329DA34B1 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:14:14Z' + - 'Ref A: BABB0348B56944EF83E66E688D8E13CD Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:07Z' status: 200 OK code: 200 - duration: 3.319053s - - id: 1 + duration: 195.1533ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -89,9 +779,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d 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 +790,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160354 + content_length: 1786216 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=1ZBRC4IwFIV%2fi3s20FYQvWVXIWpbm1thb2EWpmxQhmn435tZP6KHC%2fdwDvd%2bnBdKja5y%2fThWudHSFJm%2bo%2fkLhYtYqrjfdPastsdblfeBddagOfKdmUNl8iRtMkLuJyFM%2ffN8b%2baIIgoIXGquDkAUn1AIAgElcG8XERV6VAbA5W5J5eksfMo2sVczUDaXYgqJnRAzubAfCsyWPo2hmDK4YNqaRliPXHnv2TurEercL%2b74b3j34V%2fVO%2bDaevWjLF00SDzIrnsD","value":[]}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","location":"eastus2","name":"azdtest-w9d007a-1730745624","properties":{"correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a","resourceName":"rg-azdtest-w9d007a","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT33.2791406S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}],"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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-11-04T19:41:03Z"},"environmentName":{"type":"String","value":"azdtest-w9d007a"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15552207553737481855","timestamp":"2024-11-04T18:41:38.649785Z"},"tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2160354" + - "1786216" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:14:22 GMT + - Mon, 04 Nov 2024 18:42:13 GMT Expires: - "-1" Pragma: @@ -123,19 +813,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 15668f83-d3b0-4660-aac3-4b1186c6eb47 + - 169089bf-303c-4786-92fe-a96b39c37de2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001423Z:15668f83-d3b0-4660-aac3-4b1186c6eb47 + - WESTUS2:20241104T184214Z:169089bf-303c-4786-92fe-a96b39c37de2 X-Msedge-Ref: - - 'Ref A: 626D16B1B4864C73897D1CB7C48A9F23 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:14:17Z' + - 'Ref A: 02BA03747A5A459589A95EAE811BDBE4 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:07Z' status: 200 OK code: 200 - duration: 6.0553441s - - id: 2 + duration: 7.2253555s + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -154,10 +846,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZBRC4IwFIV%2fi3s20FYQvWVXIWpbm1thb2EWpmxQhmn435tZP6KHC%2fdwDvd%2bnBdKja5y%2fThWudHSFJm%2bo%2fkLhYtYqrjfdPastsdblfeBddagOfKdmUNl8iRtMkLuJyFM%2ffN8b%2baIIgoIXGquDkAUn1AIAgElcG8XERV6VAbA5W5J5eksfMo2sVczUDaXYgqJnRAzubAfCsyWPo2hmDK4YNqaRliPXHnv2TurEercL%2b74b3j34V%2fVO%2bDaevWjLF00SDzIrnsD + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -165,18 +857,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 306543 + content_length: 1738781 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "306543" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:14:24 GMT + - Mon, 04 Nov 2024 18:42:19 GMT Expires: - "-1" Pragma: @@ -188,68 +880,129 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - ea4b0409-4109-4593-b930-76560b631003 + - 903763b5-62e7-4fab-b32e-c4b0b3d1df5a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001425Z:ea4b0409-4109-4593-b930-76560b631003 + - WESTUS2:20241104T184220Z:903763b5-62e7-4fab-b32e-c4b0b3d1df5a X-Msedge-Ref: - - 'Ref A: 61B57C6B8084464CAEDE5E6B8AEC980B Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:14:23Z' + - 'Ref A: 38612F5733AF4F68898453A7B34B87C6 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:14Z' status: 200 OK code: 200 - duration: 2.016189s - - id: 3 + duration: 5.5280535s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4313 + 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-w4e8d44"},"intTagValue":{"value":678},"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":"15552207553737481855"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"deleteAfterTime":{"type":"string","defaultValue":"[dateTimeAdd(utcNow(''o''), ''PT1H'')]","metadata":{"description":"A time to mark on created resource groups, so they can be cleaned up via an automated process."}},"intTagValue":{"type":"int","metadata":{"description":"Test parameter for int-typed values."}},"boolTagValue":{"type":"bool","metadata":{"description":"Test parameter for bool-typed values."}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]","DeleteAfter":"[parameters(''deleteAfterTime'')]","IntTag":"[string(parameters(''intTagValue''))]","BoolTag":"[string(parameters(''boolTagValue''))]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"environmentName":{"value":"[parameters(''environmentName'')]"},"location":{"value":"[parameters(''location'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.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-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "4313" + - "1207133" Content-Type: - - application/json + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:42:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 3b5b3775-3c7f-474f-b32e-23a91b19d6a4 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184224Z:3b5b3775-3c7f-474f-b32e-23a91b19d6a4 + X-Msedge-Ref: + - 'Ref A: 666175E9B7CF44B3918AD69AD011AA55 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:20Z' + status: 200 OK + code: 200 + duration: 3.79706s + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 - method: PUT + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1477 + content_length: 128484 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:14:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:14:28.086904Z","duration":"PT0.0003044S","correlationId":"e8c728065a6822b06c540b57f250bc03","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-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e8d44"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038/operationStatuses/08584772348192045987?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1477" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:14:28 GMT + - Mon, 04 Nov 2024 18:42:25 GMT Expires: - "-1" Pragma: @@ -261,21 +1014,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - c4eabdbc-9e62-4066-88a7-17ecf217ef86 + - 59ad555a-781a-4bc6-8195-c6a295a54a0b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001428Z:c4eabdbc-9e62-4066-88a7-17ecf217ef86 + - WESTUS2:20241104T184226Z:59ad555a-781a-4bc6-8195-c6a295a54a0b X-Msedge-Ref: - - 'Ref A: 58C4CF62BBB24B2F8749F9DDA6B163C2 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:14:25Z' - status: 201 Created - code: 201 - duration: 3.1076482s - - id: 4 + - 'Ref A: F97CC7A8D00E4975AE4DE27C20349AE9 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:24Z' + status: 200 OK + code: 200 + duration: 1.7140876s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -294,10 +1047,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038/operationStatuses/08584772348192045987?api-version=2021-04-01 + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -305,18 +1058,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 537 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:29 GMT + - Mon, 04 Nov 2024 18:42:26 GMT Expires: - "-1" Pragma: @@ -328,19 +1081,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 28c912b5-5cb9-4265-98f5-36a590be9d8a + - 8252a08f-cfa5-47e4-893c-2da67d819476 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001530Z:28c912b5-5cb9-4265-98f5-36a590be9d8a + - WESTUS2:20241104T184226Z:8252a08f-cfa5-47e4-893c-2da67d819476 X-Msedge-Ref: - - 'Ref A: CDF15856E0E541B8BCEADAFDF2B419E7 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:29Z' + - 'Ref A: 3577445F6AA746AB840FAF7FCD02BAA4 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:26Z' status: 200 OK code: 200 - duration: 478.9673ms - - id: 5 + duration: 704.6781ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -359,10 +1114,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -370,18 +1125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 12 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:14:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:15:06.9197815Z","duration":"PT38.8331819S","correlationId":"e8c728065a6822b06c540b57f250bc03","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-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e8d44"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}]}}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2406" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:29 GMT + - Mon, 04 Nov 2024 18:42:26 GMT Expires: - "-1" Pragma: @@ -393,19 +1148,90 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b6831aec-ffb2-4f96-b671-fafa3c055c77 + - 670acf76-2f79-42ce-82b0-c9eec20a86af X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001530Z:b6831aec-ffb2-4f96-b671-fafa3c055c77 + - WESTUS2:20241104T184227Z:670acf76-2f79-42ce-82b0-c9eec20a86af X-Msedge-Ref: - - 'Ref A: 322678F3BB1D4922844A648C56F2EB8C Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:30Z' + - 'Ref A: 16B1FAFFF2314E19B97BCFF9D6909837 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:26Z' status: 200 OK code: 200 - duration: 396.6663ms - - id: 6 + duration: 455.2012ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - e5e0dd22c9ebf1a2ce57733f63fc470d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2405 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:03Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:41:38.649785Z","duration":"PT33.2791406S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2405" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:42:26 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: + - e5e0dd22c9ebf1a2ce57733f63fc470d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 9601e6d9-dab4-426f-99cb-4ff9de5b166b + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184227Z:9601e6d9-dab4-426f-99cb-4ff9de5b166b + X-Msedge-Ref: + - 'Ref A: 8F42B1AB56A640909A7D309F0357C24D Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:27Z' + status: 200 OK + code: 200 + duration: 256.4285ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -426,9 +1252,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - c84bbc45984b0ad4314e8a2178ee0dd2 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -437,18 +1263,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2146989 + content_length: 1786216 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":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","location":"eastus2","name":"azdtest-w4e8d44-1724372038","properties":{"correlationId":"e8c728065a6822b06c540b57f250bc03","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44","resourceName":"rg-azdtest-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT38.8331819S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}],"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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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:14:26Z"},"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15552207553737481855","timestamp":"2024-08-23T00:15:06.9197815Z"},"tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","location":"eastus2","name":"azdtest-w9d007a-1730745624","properties":{"correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a","resourceName":"rg-azdtest-w9d007a","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT33.2791406S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}],"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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-11-04T19:41:03Z"},"environmentName":{"type":"String","value":"azdtest-w9d007a"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15552207553737481855","timestamp":"2024-11-04T18:41:38.649785Z"},"tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2146989" + - "1786216" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:36 GMT + - Mon, 04 Nov 2024 18:42:38 GMT Expires: - "-1" Pragma: @@ -460,19 +1286,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 5060145d-5a43-449c-910b-8791c4495171 + - 3574ed0e-89b1-46a3-a55b-00eec741357f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001537Z:5060145d-5a43-449c-910b-8791c4495171 + - WESTUS2:20241104T184239Z:3574ed0e-89b1-46a3-a55b-00eec741357f X-Msedge-Ref: - - 'Ref A: 0286AB37CD6841F39064EA7FF2F0CD79 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:30Z' + - 'Ref A: 2A52B6E1F6FE464F9FA5F8C8CC969C48 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:31Z' status: 200 OK code: 200 - duration: 6.6067743s - - id: 7 + duration: 7.7744013s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -491,10 +1319,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - 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 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -502,18 +1330,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 1738781 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:38 GMT + - Mon, 04 Nov 2024 18:42:42 GMT Expires: - "-1" Pragma: @@ -525,19 +1353,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - f0ca24e7-ccde-4081-9c27-d738107e30d1 + - 9fb8c2d3-021e-4e40-9d0b-6bf4479d89d4 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001539Z:f0ca24e7-ccde-4081-9c27-d738107e30d1 + - WESTUS2:20241104T184243Z:9fb8c2d3-021e-4e40-9d0b-6bf4479d89d4 X-Msedge-Ref: - - 'Ref A: AB753AF44F014EE99B537D68EB5CED3C Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:37Z' + - 'Ref A: 5DB6C3104F4B4A9B9D76036411F51E60 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:39Z' status: 200 OK code: 200 - duration: 1.7374436s - - id: 8 + duration: 3.8505709s + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -551,17 +1381,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -569,18 +1397,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 1207133 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:14:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:15:06.9197815Z","duration":"PT38.8331819S","correlationId":"e8c728065a6822b06c540b57f250bc03","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-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e8d44"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2406" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:38 GMT + - Mon, 04 Nov 2024 18:42:46 GMT Expires: - "-1" Pragma: @@ -592,19 +1420,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e8c728065a6822b06c540b57f250bc03 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - aacb0bdd-5551-4c54-b4bf-29565d4fe01f + - f467da45-81d8-470d-8bf4-45b6cb5fbdb6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001539Z:aacb0bdd-5551-4c54-b4bf-29565d4fe01f + - WESTUS2:20241104T184247Z:f467da45-81d8-470d-8bf4-45b6cb5fbdb6 X-Msedge-Ref: - - 'Ref A: AB501CA4D59247A8AE27EEE8720829BE Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:39Z' + - 'Ref A: 097B91D95B65412BAAECA5C4DA68B244 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:43Z' status: 200 OK code: 200 - duration: 212.9904ms - - id: 9 + duration: 3.6113185s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -618,17 +1448,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -636,18 +1464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2146989 + content_length: 128484 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":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","location":"eastus2","name":"azdtest-w4e8d44-1724372038","properties":{"correlationId":"e8c728065a6822b06c540b57f250bc03","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44","resourceName":"rg-azdtest-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT38.8331819S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}],"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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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:14:26Z"},"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"intTagValue":{"type":"Int","value":678},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"15552207553737481855","timestamp":"2024-08-23T00:15:06.9197815Z"},"tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2146989" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:50 GMT + - Mon, 04 Nov 2024 18:42:48 GMT Expires: - "-1" Pragma: @@ -659,19 +1487,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 3417b8dc-6f99-4c88-9e1c-10d7ea751863 + - 8f6097b2-56c1-43ff-9236-f12b05b3db0a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001551Z:3417b8dc-6f99-4c88-9e1c-10d7ea751863 + - WESTUS2:20241104T184249Z:8f6097b2-56c1-43ff-9236-f12b05b3db0a X-Msedge-Ref: - - 'Ref A: 922949AE5CC84E6598B6EC22E1CC53C9 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:41Z' + - 'Ref A: 4606A532FD6E456AAC573B821B093627 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:47Z' status: 200 OK code: 200 - duration: 9.8050811s - - id: 10 + duration: 1.3849987s + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:42:48 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: + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 5d140035-a6bf-427d-b962-bd997d79a0cc + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T184249Z:5d140035-a6bf-427d-b962-bd997d79a0cc + X-Msedge-Ref: + - 'Ref A: 3ABCB15E264C41A0A07C7D860C0DA093 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:49Z' + status: 200 OK + code: 200 + duration: 620.0949ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -690,10 +1587,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - 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 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -701,18 +1598,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:52 GMT + - Mon, 04 Nov 2024 18:42:49 GMT Expires: - "-1" Pragma: @@ -724,19 +1621,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - f0f895bb-36cc-4bfd-abb6-563fa071feb0 + - 27387492-fe7d-4a8d-9e81-3c32a225d282 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001553Z:f0f895bb-36cc-4bfd-abb6-563fa071feb0 + - WESTUS2:20241104T184250Z:27387492-fe7d-4a8d-9e81-3c32a225d282 X-Msedge-Ref: - - 'Ref A: DFA121E981BE4657AB65C3710C9DE7F1 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:51Z' + - 'Ref A: 935FFC83DF444F0784FC5371BA15B78E Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:49Z' status: 200 OK code: 200 - duration: 1.8465425s - - id: 11 + duration: 449.4205ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -757,10 +1656,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -768,18 +1667,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 2405 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:14:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:15:06.9197815Z","duration":"PT38.8331819S","correlationId":"e8c728065a6822b06c540b57f250bc03","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-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e8d44"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:03Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:41:38.649785Z","duration":"PT33.2791406S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2406" + - "2405" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:53 GMT + - Mon, 04 Nov 2024 18:42:49 GMT Expires: - "-1" Pragma: @@ -791,19 +1690,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - acf5ba49-0ea4-4c1c-bda5-d7d0847381de + - 62da42ca-98dc-46ab-ad42-3dddce2fbf93 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001553Z:acf5ba49-0ea4-4c1c-bda5-d7d0847381de + - WESTUS2:20241104T184250Z:62da42ca-98dc-46ab-ad42-3dddce2fbf93 X-Msedge-Ref: - - 'Ref A: 0945FF63843F464FB321D891DA7FB9C7 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:53Z' + - 'Ref A: 05A0EFEA0BB346D2813877B328421461 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:50Z' status: 200 OK code: 200 - duration: 403.167ms - - id: 12 + duration: 195.49ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -824,10 +1725,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e8d44%27&api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9d007a%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -837,7 +1738,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44","name":"rg-azdtest-w4e8d44","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","DeleteAfter":"2024-08-23T01:14:26Z","IntTag":"678","BoolTag":"False"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a","name":"rg-azdtest-w9d007a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","DeleteAfter":"2024-11-04T19:41:03Z","IntTag":"678","BoolTag":"False"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -846,7 +1747,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:53 GMT + - Mon, 04 Nov 2024 18:42:49 GMT Expires: - "-1" Pragma: @@ -858,19 +1759,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 9c4fd3bb-a449-4ea1-9801-eed38ed4c8ea + - 09251136-1bb8-4aaa-9014-ab088889af4d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001554Z:9c4fd3bb-a449-4ea1-9801-eed38ed4c8ea + - WESTUS2:20241104T184250Z:09251136-1bb8-4aaa-9014-ab088889af4d X-Msedge-Ref: - - 'Ref A: 7C918BA4E9274145965D8788D82CF835 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:54Z' + - 'Ref A: BBD06F2C1852412E8E30A4181405E6F0 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:50Z' status: 200 OK code: 200 - duration: 75.1028ms - - id: 13 + duration: 170.6961ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -891,10 +1794,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/resources?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -904,7 +1807,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui","name":"stzdsdjhbbiieui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc","name":"std4jqclyx3djlc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a"}}]}' headers: Cache-Control: - no-cache @@ -913,7 +1816,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:53 GMT + - Mon, 04 Nov 2024 18:42:49 GMT Expires: - "-1" Pragma: @@ -925,19 +1828,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 8ea380bf-b07c-493a-b2b3-4de7907f37a2 + - 95c146e3-a035-433e-9637-9136328fc1e9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001554Z:8ea380bf-b07c-493a-b2b3-4de7907f37a2 + - WESTUS2:20241104T184250Z:95c146e3-a035-433e-9637-9136328fc1e9 X-Msedge-Ref: - - 'Ref A: C0BE5D38AAFB43EF9FDE6A7D8CA527A2 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:54Z' + - 'Ref A: B6C3CB8C17784CFBBDEBB70010F5EDE8 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:50Z' status: 200 OK code: 200 - duration: 570.9324ms - - id: 14 + duration: 200.1825ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -958,10 +1863,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -969,18 +1874,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 2405 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:14:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:15:06.9197815Z","duration":"PT38.8331819S","correlationId":"e8c728065a6822b06c540b57f250bc03","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-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e8d44"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:03Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:41:38.649785Z","duration":"PT33.2791406S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2406" + - "2405" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:54 GMT + - Mon, 04 Nov 2024 18:42:50 GMT Expires: - "-1" Pragma: @@ -992,19 +1897,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 695c6e4f-880e-4a36-bf39-ed5beba0b6bb + - ad04491a-27bf-4432-9021-f96bb3b45866 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001555Z:695c6e4f-880e-4a36-bf39-ed5beba0b6bb + - WESTUS2:20241104T184251Z:ad04491a-27bf-4432-9021-f96bb3b45866 X-Msedge-Ref: - - 'Ref A: 2256B012E0F6473DB51B4742820F5997 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:54Z' + - 'Ref A: 200C166EFC8644C48CA5448E73E03F84 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:50Z' status: 200 OK code: 200 - duration: 394.5573ms - - id: 15 + duration: 370.261ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1025,10 +1932,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w4e8d44%27&api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w9d007a%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1038,7 +1945,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44","name":"rg-azdtest-w4e8d44","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","DeleteAfter":"2024-08-23T01:14:26Z","IntTag":"678","BoolTag":"False"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a","name":"rg-azdtest-w9d007a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","DeleteAfter":"2024-11-04T19:41:03Z","IntTag":"678","BoolTag":"False"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1047,7 +1954,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:54 GMT + - Mon, 04 Nov 2024 18:42:50 GMT Expires: - "-1" Pragma: @@ -1059,19 +1966,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 5ef49531-e728-4e28-bea0-741e88ebb2fe + - 00a0120d-d51b-41d7-aaf7-7e4a8481091e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001555Z:5ef49531-e728-4e28-bea0-741e88ebb2fe + - WESTUS2:20241104T184251Z:00a0120d-d51b-41d7-aaf7-7e4a8481091e X-Msedge-Ref: - - 'Ref A: 3683C75D10434D5D8A984EA2D7EAAA04 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:55Z' + - 'Ref A: 1A479818E9334BC0B86E4117FB7E0E97 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:51Z' status: 200 OK code: 200 - duration: 76.6234ms - - id: 16 + duration: 95.9173ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1092,10 +2001,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/resources?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1105,7 +2014,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui","name":"stzdsdjhbbiieui","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc","name":"std4jqclyx3djlc","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a"}}]}' headers: Cache-Control: - no-cache @@ -1114,7 +2023,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:15:54 GMT + - Mon, 04 Nov 2024 18:42:50 GMT Expires: - "-1" Pragma: @@ -1126,19 +2035,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7b6d31de-ce34-4b8a-9e2c-26c99c75b961 + - 4fb0eaba-7c72-450c-afe3-8f965e5b06e4 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001555Z:7b6d31de-ce34-4b8a-9e2c-26c99c75b961 + - WESTUS2:20241104T184251Z:4fb0eaba-7c72-450c-afe3-8f965e5b06e4 X-Msedge-Ref: - - 'Ref A: 58B8885D726C47F88A7A306E0EEF8D67 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:55Z' + - 'Ref A: 6059972197624A309EB6D20CB66244D2 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:51Z' status: 200 OK code: 200 - duration: 217.7586ms - - id: 17 + duration: 195.9896ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1159,10 +2070,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w4e8d44?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w9d007a?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1179,11 +2090,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:15:56 GMT + - Mon, 04 Nov 2024 18:42:51 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNEU4RDQ0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599690806766697&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=Dg92Urk9QPdfvoh9_Cx1oiK7ZUtDbqCDbe4Iw0GsOKoRDT49P9lJFbXZUVlrjTA_h29DyE5NvNXHKnL0y8st3gcaD3ikgPK7LJ5K3F6x2VaLSTeYhcwmQyWilGw0mcDwDBQMSd5rGD9IRck9y-Oc6xNlwwZ6YNrNaJwLD0Tm_q9jS6lkKm1PdvmA9kuar_8f56lg573mQcoIauQFj-vj8QfG2UxIpRuPDczEnOgEdEXBU53n-SNDcQPQdrS1jmkZWMlK6Bg7X0DsBv3ghLlom2oCpuUJpRpXf8mV0-RahUVKmBTSHlaRfs7l4Ogj8aeR2MeU8NlmCQ5z2BGPnXZZLw&h=WSH_2h2s727VW7UIPId1WB6gmat16uLs7Py76Qgx7AE + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOUQwMDdBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663426337539829&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=vtAiFJo8MaKtW2qkJzWbLn00TuXEZwNJRR4OxcbhRSJS53Xk_S1sgXFhwGjIt7aub9zrOY703_AgbfnzAvkMEARO1tR0ywqL37jdBNZCPl5NHDAX0B28L447RUZOparcsHfz6f5eNO97VLKeAKngceIlzwTNsCL1pAULIl1SvBNK0GA-MCbhViElItU9jvJmQu4v1mfiZiyzLHbP6lHJ9pQE-V1wR2vCUCo1l3k7KY_nCldXewtN1_4rekjuku8MPOdKTJfC4HffoTZ-cziX90p-tSU7R5Z9wmZ-x2ATwT3QJGO5MqV_GLb20YWy1_4cPEPBUgpdn4NBoNs3i_N_CQ&h=ECC6u0FNcEQbhbOr2gdXmi_8RaGVgSJnh-bHm1Lsj8A Pragma: - no-cache Retry-After: @@ -1195,19 +2106,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - aa3cfc11-d1ed-4df4-9c1a-6fc16ad0a718 + - 64522aff-6f88-4334-82cb-11e35d82c66d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001557Z:aa3cfc11-d1ed-4df4-9c1a-6fc16ad0a718 + - WESTUS2:20241104T184252Z:64522aff-6f88-4334-82cb-11e35d82c66d X-Msedge-Ref: - - 'Ref A: 69E314253C4D4AB198F386A11B50DFC3 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:15:55Z' + - 'Ref A: 1A0B655B94624EC3B0234B2C3604ACD9 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:42:51Z' status: 202 Accepted code: 202 - duration: 2.0237197s - - id: 18 + duration: 1.238835s + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1226,10 +2139,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNEU4RDQ0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599690806766697&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=Dg92Urk9QPdfvoh9_Cx1oiK7ZUtDbqCDbe4Iw0GsOKoRDT49P9lJFbXZUVlrjTA_h29DyE5NvNXHKnL0y8st3gcaD3ikgPK7LJ5K3F6x2VaLSTeYhcwmQyWilGw0mcDwDBQMSd5rGD9IRck9y-Oc6xNlwwZ6YNrNaJwLD0Tm_q9jS6lkKm1PdvmA9kuar_8f56lg573mQcoIauQFj-vj8QfG2UxIpRuPDczEnOgEdEXBU53n-SNDcQPQdrS1jmkZWMlK6Bg7X0DsBv3ghLlom2oCpuUJpRpXf8mV0-RahUVKmBTSHlaRfs7l4Ogj8aeR2MeU8NlmCQ5z2BGPnXZZLw&h=WSH_2h2s727VW7UIPId1WB6gmat16uLs7Py76Qgx7AE + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOUQwMDdBLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663426337539829&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=vtAiFJo8MaKtW2qkJzWbLn00TuXEZwNJRR4OxcbhRSJS53Xk_S1sgXFhwGjIt7aub9zrOY703_AgbfnzAvkMEARO1tR0ywqL37jdBNZCPl5NHDAX0B28L447RUZOparcsHfz6f5eNO97VLKeAKngceIlzwTNsCL1pAULIl1SvBNK0GA-MCbhViElItU9jvJmQu4v1mfiZiyzLHbP6lHJ9pQE-V1wR2vCUCo1l3k7KY_nCldXewtN1_4rekjuku8MPOdKTJfC4HffoTZ-cziX90p-tSU7R5Z9wmZ-x2ATwT3QJGO5MqV_GLb20YWy1_4cPEPBUgpdn4NBoNs3i_N_CQ&h=ECC6u0FNcEQbhbOr2gdXmi_8RaGVgSJnh-bHm1Lsj8A method: GET response: proto: HTTP/2.0 @@ -1246,7 +2159,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:18:16 GMT + - Mon, 04 Nov 2024 18:44:08 GMT Expires: - "-1" Pragma: @@ -1258,19 +2171,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 712b9991-48e7-4444-91b7-8ce8ad214d60 + - e63fc76b-1dbf-471b-af4b-c290d09b4838 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001816Z:712b9991-48e7-4444-91b7-8ce8ad214d60 + - WESTUS2:20241104T184408Z:e63fc76b-1dbf-471b-af4b-c290d09b4838 X-Msedge-Ref: - - 'Ref A: 0AE2092743854F46878532636E4B53B2 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:18:15Z' + - 'Ref A: CE418096F00247F0B935073D59B208BF Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:44:08Z' status: 200 OK code: 200 - duration: 468.6377ms - - id: 19 + duration: 192.3061ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1291,10 +2206,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1302,18 +2217,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 2405 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w4e8d44","azd-provision-param-hash":"7aff5a911f83435005f576805fa069ec61bd14053cdb4bec527012ca9bb34ec3"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w4e8d44"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:14:26Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:15:06.9197815Z","duration":"PT38.8331819S","correlationId":"e8c728065a6822b06c540b57f250bc03","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-w4e8d44","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w4e8d44"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/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-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stzdsdjhbbiieui"},"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-w4e8d44"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w4e8d44/providers/Microsoft.Storage/storageAccounts/stzdsdjhbbiieui"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w9d007a","azd-provision-param-hash":"186956753fb20f2eca1a70979e1f53b436607c20b4bed7ed2ee3d38af2e7306a"},"properties":{"templateHash":"15552207553737481855","parameters":{"environmentName":{"type":"String","value":"azdtest-w9d007a"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:41:03Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:41:38.649785Z","duration":"PT33.2791406S","correlationId":"e5e0dd22c9ebf1a2ce57733f63fc470d","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-w9d007a","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w9d007a"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/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-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"std4jqclyx3djlc"},"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-w9d007a"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w9d007a/providers/Microsoft.Storage/storageAccounts/std4jqclyx3djlc"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2406" + - "2405" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:18:16 GMT + - Mon, 04 Nov 2024 18:44:08 GMT Expires: - "-1" Pragma: @@ -1325,19 +2240,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 0a121ceb-05c3-4fd5-9bfc-960a1b4288f2 + - 098fc3d6-7db0-4c80-a4e0-aa5e53b900d8 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001816Z:0a121ceb-05c3-4fd5-9bfc-960a1b4288f2 + - WESTUS2:20241104T184409Z:098fc3d6-7db0-4c80-a4e0-aa5e53b900d8 X-Msedge-Ref: - - 'Ref A: 71527FA4808B4BF78A0BEC5B5604D3CE Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:18:16Z' + - 'Ref A: CA68691212FE42BF99E495F1A46D9F47 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:44:08Z' status: 200 OK code: 200 - duration: 424.0375ms - - id: 20 + duration: 186.2246ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1348,7 +2265,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-w4e8d44"}}' + 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-w9d007a"}}' form: {} headers: Accept: @@ -1362,10 +2279,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1375,10 +2292,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e8d44"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:18:19.2668726Z","duration":"PT0.0002262S","correlationId":"ccff656cd76d1ff0c01d882ee8902dc7","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w9d007a"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T18:44:12.0979747Z","duration":"PT0.0005074S","correlationId":"c84bbc45984b0ad4314e8a2178ee0dd2","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038/operationStatuses/08584772345877206829?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624/operationStatuses/08584708610357252619?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -1386,7 +2303,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:18:19 GMT + - Mon, 04 Nov 2024 18:44:11 GMT Expires: - "-1" Pragma: @@ -1398,21 +2315,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - d70d2c3c-f212-4a8d-a512-73b45b6677a0 + - c32d78d1-c607-4d8a-a267-96cacfbf54c9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001819Z:d70d2c3c-f212-4a8d-a512-73b45b6677a0 + - WESTUS2:20241104T184412Z:c32d78d1-c607-4d8a-a267-96cacfbf54c9 X-Msedge-Ref: - - 'Ref A: A539C96425BF4D4696A76055D8168ED0 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:18:16Z' + - 'Ref A: 11DFB424797C4E61A6C4727F57A0DC33 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:44:09Z' status: 200 OK code: 200 - duration: 3.1167253s - - id: 21 + duration: 3.4333909s + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1431,10 +2350,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038/operationStatuses/08584772345877206829?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624/operationStatuses/08584708610357252619?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1453,7 +2372,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:18:50 GMT + - Mon, 04 Nov 2024 18:44:42 GMT Expires: - "-1" Pragma: @@ -1465,19 +2384,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - a1b8535b-a74a-4510-aa0e-b12ce0f8bdb0 + - e8acf7cb-bd40-47d8-b977-922c76084427 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001850Z:a1b8535b-a74a-4510-aa0e-b12ce0f8bdb0 + - WESTUS2:20241104T184443Z:e8acf7cb-bd40-47d8-b977-922c76084427 X-Msedge-Ref: - - 'Ref A: 43D4BD9B64A44C87B3FC13D841EB1113 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:18:50Z' + - 'Ref A: AF291D47CD1D488FA14CFD70CD870D4F Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:44:42Z' status: 200 OK code: 200 - duration: 219.9597ms - - id: 22 + duration: 357.3155ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1496,10 +2417,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038?api-version=2021-04-01 + - c84bbc45984b0ad4314e8a2178ee0dd2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1507,18 +2428,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 605 + content_length: 604 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w4e8d44-1724372038","name":"azdtest-w4e8d44-1724372038","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w4e8d44"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:18:20.3610983Z","duration":"PT1.0944519S","correlationId":"ccff656cd76d1ff0c01d882ee8902dc7","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w9d007a-1730745624","name":"azdtest-w9d007a-1730745624","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w9d007a"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:44:12.885858Z","duration":"PT0.7883907S","correlationId":"c84bbc45984b0ad4314e8a2178ee0dd2","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "605" + - "604" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:18:50 GMT + - Mon, 04 Nov 2024 18:44:42 GMT Expires: - "-1" Pragma: @@ -1530,19 +2451,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ccff656cd76d1ff0c01d882ee8902dc7 + - c84bbc45984b0ad4314e8a2178ee0dd2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - eabd183b-ef0c-4de5-9a5f-d1e89220f72f + - 2d1804b0-e2ce-47f8-afbb-1d808c1b10cb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001850Z:eabd183b-ef0c-4de5-9a5f-d1e89220f72f + - WESTUS2:20241104T184443Z:2d1804b0-e2ce-47f8-afbb-1d808c1b10cb X-Msedge-Ref: - - 'Ref A: 94352944423945779C994AED93A7A3C5 Ref B: CO6AA3150219053 Ref C: 2024-08-23T00:18:50Z' + - 'Ref A: 46D491FD5DDD467BB7BDFE3AB299F754 Ref B: CO6AA3150219025 Ref C: 2024-11-04T18:44:43Z' status: 200 OK code: 200 - duration: 219.5633ms + duration: 214.2331ms --- -env_name: azdtest-w4e8d44 +env_name: azdtest-w9d007a subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372038" +time: "1730745624" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml index 6c200be61db..77358387194 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDelete.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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 3b4147641f49e567d9ecd6044d68e3cb url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:19:59 GMT + - Mon, 04 Nov 2024 19:04:53 GMT Expires: - "-1" Pragma: @@ -56,30 +56,509 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b6c9f967-70da-4407-b0fc-44f349b36e82 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190453Z:b6c9f967-70da-4407-b0fc-44f349b36e82 + X-Msedge-Ref: + - 'Ref A: B26756E1AACF4D03A3636868BE25CBDF Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:04:52Z' + status: 200 OK + code: 200 + duration: 1.8462772s + - id: 1 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + 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: 1785653 + 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1785653" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:04:59 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4e259021-9b3a-456d-a3db-50d484925501 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190459Z:4e259021-9b3a-456d-a3db-50d484925501 + X-Msedge-Ref: + - 'Ref A: F7E1D444938541D9B8E282CF27C0E919 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:04:54Z' + status: 200 OK + code: 200 + duration: 5.8987034s + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1738781 + 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1738781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05:04 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 44371b49-6776-4858-9571-f4b5603c0a20 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190504Z:44371b49-6776-4858-9571-f4b5603c0a20 + X-Msedge-Ref: + - 'Ref A: 287A57ABED1F4253B72AC102CFABB751 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:00Z' + status: 200 OK + code: 200 + duration: 4.4600787s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1207133" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05:09 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 1620f117-30ff-4350-a9bb-74c3983127a9 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190509Z:1620f117-30ff-4350-a9bb-74c3983127a9 + X-Msedge-Ref: + - 'Ref A: 7DDB7EE5BAC14E6BAAAEE42E2AAC964B Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:04Z' + status: 200 OK + code: 200 + duration: 5.1103753s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128484 + 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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "128484" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05:10 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - bb422663-17c3-4432-88a5-a8c55fcb3325 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190511Z:bb422663-17c3-4432-88a5-a8c55fcb3325 + X-Msedge-Ref: + - 'Ref A: E59630162AD047D6B6708E72C6EA7AEE Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:10Z' + status: 200 OK + code: 200 + duration: 1.3637443s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b082cbbb-6d8b-4bc4-94ed-c656773b5165 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190512Z:b082cbbb-6d8b-4bc4-94ed-c656773b5165 + X-Msedge-Ref: + - 'Ref A: 73C7AF1B3D5E4AC387817779DE3BA9E3 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:11Z' + status: 200 OK + code: 200 + duration: 812.987ms + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: + - Mon, 04 Nov 2024 19:05:12 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - cf2fbe00-a465-4d74-9869-31ba69526432 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190512Z:cf2fbe00-a465-4d74-9869-31ba69526432 + X-Msedge-Ref: + - 'Ref A: 5AF13DF2B1AD4218A778C9B4D6CB5454 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:12Z' + status: 200 OK + code: 200 + duration: 384.5851ms + - id: 7 + 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-wbd6db4"},"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-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"}}' + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078/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-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:12Z"},"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":"3b4147641f49e567d9ecd6044d68e3cb","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-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wbd6db4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1959" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 692b607c-4fe5-493b-8622-bdbe58471dc7 + - 56aaeeea-058e-4d07-9b96-ccae0648d516 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001959Z:692b607c-4fe5-493b-8622-bdbe58471dc7 + - WESTUS2:20241104T190514Z:56aaeeea-058e-4d07-9b96-ccae0648d516 X-Msedge-Ref: - - 'Ref A: D2EEA950DAC4493BA9238D94B64B246A Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:19:56Z' + - 'Ref A: FE415F0EB20947179ABB0FCB20B4BF8E Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:12Z' status: 200 OK code: 200 - duration: 3.1325203s - - id: 1 + duration: 1.6011086s + - id: 8 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-wbd6db4"},"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-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"}}' form: {} headers: Accept: @@ -88,11 +567,86 @@ 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1554 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:14Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T19:05:16.5867097Z","duration":"PT0.0002874S","correlationId":"3b4147641f49e567d9ecd6044d68e3cb","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-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wbd6db4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/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-wbd6db4-1730747078/operationStatuses/08584708597709370797?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "1554" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 16379286-4751-41ba-81da-56b0a69b2db0 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190517Z:16379286-4751-41ba-81da-56b0a69b2db0 + X-Msedge-Ref: + - 'Ref A: D3F1FD2E08834FD78E1AAAF0D5507088 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:05:14Z' + status: 201 Created + code: 201 + duration: 2.7821062s + - id: 9 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078/operationStatuses/08584708597709370797?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -100,18 +654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145188 + 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=1ZDBboMwDIafhZxbKSx0qnqDmkrVFrNA0ondqo4iCkqkjQpIxbsvtOsLdKcdLP3W%2f8v%2b7As5GN1W%2brxvK6OlqQv9TVYXEoeZVNmkdNG3b%2fuvtpoCL8VAVsT3lh7KvOc2n5PZNZGa7u75dOml9SbiUHZCfQBXIkCIohQaEHS34SqmKCMQcrdG%2bXlMfUxeM9oloFzuwBByVzFLZOg21CxZ%2b5hBvUigZGjNkDqPn8TkuTnbORlnv7hPD%2fIGf%2bZ1tzIOoY82tjhceQOnn3kterRbyiVfoC27ifU9%2flevveG61%2bpz09zp2a0dxx8%3d","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2145188" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:05 GMT + - Mon, 04 Nov 2024 19:06:17 GMT Expires: - "-1" Pragma: @@ -123,19 +677,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 14364fd0-5c93-4d84-a15e-6d8543db117b + - 3b9b0030-5302-4837-96b9-ed97ddce9ce3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002005Z:14364fd0-5c93-4d84-a15e-6d8543db117b + - WESTUS2:20241104T190618Z:3b9b0030-5302-4837-96b9-ed97ddce9ce3 X-Msedge-Ref: - - 'Ref A: 14891A0CBB3F461B8C46A46AEBF3C215 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:19:59Z' + - 'Ref A: 47907DDDDBB14E5D85458F26EA142CA1 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:17Z' status: 200 OK code: 200 - duration: 6.5897412s - - id: 2 + duration: 328.4222ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -154,10 +710,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - 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 + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -165,18 +721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 2482 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:14Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:49.2804545Z","duration":"PT32.6940322S","correlationId":"3b4147641f49e567d9ecd6044d68e3cb","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-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wbd6db4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/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-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stp3dgpsshawl3c"},"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-wbd6db4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:07 GMT + - Mon, 04 Nov 2024 19:06:18 GMT Expires: - "-1" Pragma: @@ -188,30 +744,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 5717281a-938e-4d9c-9edd-15237f8ba4d4 + - 077aad2b-379f-4fc5-a0f3-20f29475e665 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002008Z:5717281a-938e-4d9c-9edd-15237f8ba4d4 + - WESTUS2:20241104T190618Z:077aad2b-379f-4fc5-a0f3-20f29475e665 X-Msedge-Ref: - - 'Ref A: 144112858DC44A5982F33D2FA75F29EE Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:20:06Z' + - 'Ref A: 2FCAB267781743CD870324AFCF86C29F Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:18Z' status: 200 OK code: 200 - duration: 1.8349009s - - id: 3 + duration: 498.7888ms + - id: 11 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-wd989ee"},"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-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"}}' + body: "" form: {} headers: Accept: @@ -220,36 +778,97 @@ interactions: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wbd6db4%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-wbd6db4","name":"rg-azdtest-wbd6db4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","DeleteAfter":"2024-11-04T20:05:14Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "4683" + - "396" Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:06:18 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 3b4147641f49e567d9ecd6044d68e3cb + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7f7d2366-e091-407b-b7ef-f6bdfa298dad + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190618Z:7f7d2366-e091-407b-b7ef-f6bdfa298dad + X-Msedge-Ref: + - 'Ref A: 5F6D4F8E1C5E4D1B9957961F033952D6 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:18Z' + status: 200 OK + code: 200 + duration: 86.3783ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.21.6; Windows_NT),azdev/0.0.0-dev.0 (Go go1.21.6; windows/amd64) - X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 - method: PUT + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wbd6db4%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-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd989ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:08Z"},"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.9048686Z","duration":"PT0.0001183S","correlationId":"aeb82b2ebe668c8fa13e58d543012a7a","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-wd989ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd989ee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4","name":"rg-azdtest-wbd6db4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","DeleteAfter":"2024-11-04T20:05:14Z","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-wd989ee-1724372388/operationStatuses/08584772344770584100?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1554" + - "396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:10 GMT + - Mon, 04 Nov 2024 19:06:19 GMT Expires: - "-1" Pragma: @@ -261,21 +880,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - 54a5448d-c734-47c6-83eb-7426be3e288f + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 8e5e0b11-893e-475d-90d9-6a6e3d8954b9 + - 54a5448d-c734-47c6-83eb-7426be3e288f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002010Z:8e5e0b11-893e-475d-90d9-6a6e3d8954b9 + - WESTUS2:20241104T190619Z:54a5448d-c734-47c6-83eb-7426be3e288f X-Msedge-Ref: - - 'Ref A: EE8F6FF3E1BB44348FE2B359FF901476 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:20:08Z' - status: 201 Created - code: 201 - duration: 2.6633041s - - id: 4 + - 'Ref A: 72D3322DFDF2485DA3CBE90A715A2D98 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:19Z' + status: 200 OK + code: 200 + duration: 51.5899ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -289,15 +908,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388/operationStatuses/08584772344770584100?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + 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 @@ -305,18 +926,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 1790709 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","location":"eastus2","name":"azdtest-wbd6db4-1730747078","properties":{"correlationId":"3b4147641f49e567d9ecd6044d68e3cb","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4","resourceName":"rg-azdtest-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT32.6940322S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"}],"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-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stp3dgpsshawl3c"},"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-11-04T20:05:14Z"},"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"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-11-04T19:05:49.2804545Z"},"tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "1790709" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:11 GMT + - Mon, 04 Nov 2024 19:06:29 GMT Expires: - "-1" Pragma: @@ -328,19 +949,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 91afc0d3-0381-4bd5-aa6e-73a452e52475 + - 8c7655c6-20ba-4c0e-926d-65d214bf5147 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002111Z:91afc0d3-0381-4bd5-aa6e-73a452e52475 + - WESTUS2:20241104T190630Z:8c7655c6-20ba-4c0e-926d-65d214bf5147 X-Msedge-Ref: - - 'Ref A: 9348B00FDE7C411A80CCB85E69FDA81C Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: D41A5FD843D74D73BC0D2D0E7F8FC72F Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:23Z' status: 200 OK code: 200 - duration: 346.9832ms - - id: 5 + duration: 7.0505899s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -359,10 +982,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -370,18 +993,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 1738781 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd989ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:08Z"},"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:45.3066357Z","duration":"PT35.4018854S","correlationId":"aeb82b2ebe668c8fa13e58d543012a7a","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-wd989ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd989ee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/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-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdvzh3dpvs2sus"},"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-wd989ee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:11 GMT + - Mon, 04 Nov 2024 19:06:34 GMT Expires: - "-1" Pragma: @@ -393,19 +1016,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 88a549a6-38a9-4a92-882e-96220546c93e + - 36d0d465-7ade-4cf4-8de6-68526ad95843 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002111Z:88a549a6-38a9-4a92-882e-96220546c93e + - WESTUS2:20241104T190635Z:36d0d465-7ade-4cf4-8de6-68526ad95843 X-Msedge-Ref: - - 'Ref A: FCFA998A70BE4F76AF62C210AFAE48B6 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: 7CBB0ED4DAA5438FB3F8679E73282205 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:30Z' status: 200 OK code: 200 - duration: 199.7441ms - - id: 6 + duration: 4.9118072s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -419,17 +1044,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd989ee%27&api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -437,18 +1060,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 1207133 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee","name":"rg-azdtest-wd989ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","DeleteAfter":"2024-08-23T01:20:08Z","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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:11 GMT + - Mon, 04 Nov 2024 19:06:38 GMT Expires: - "-1" Pragma: @@ -460,19 +1083,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - aeb82b2ebe668c8fa13e58d543012a7a + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - dc5d46b2-b2b0-4eb8-8f9c-850580971092 + - a674eb0c-04cf-40ed-8fad-83a7e69bbd67 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002112Z:dc5d46b2-b2b0-4eb8-8f9c-850580971092 + - WESTUS2:20241104T190638Z:a674eb0c-04cf-40ed-8fad-83a7e69bbd67 X-Msedge-Ref: - - 'Ref A: 67135C0984BB489EB09BD283392D26AF Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: 81E7927187034E14B1088C0FE833E64E Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:35Z' status: 200 OK code: 200 - duration: 90.3792ms - - id: 7 + duration: 3.4158388s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -486,15 +1111,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) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd989ee%27&api-version=2021-04-01 + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -502,18 +1127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 128484 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee","name":"rg-azdtest-wd989ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","DeleteAfter":"2024-08-23T01:20:08Z","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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:12 GMT + - Mon, 04 Nov 2024 19:06:39 GMT Expires: - "-1" Pragma: @@ -525,19 +1150,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d62db547-fd9a-4a16-9c37-c6eae2998167 + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - d62db547-fd9a-4a16-9c37-c6eae2998167 + - 61cce239-d1fd-46b7-b73f-6f9041d3333f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002112Z:d62db547-fd9a-4a16-9c37-c6eae2998167 + - WESTUS2:20241104T190640Z:61cce239-d1fd-46b7-b73f-6f9041d3333f X-Msedge-Ref: - - 'Ref A: AD52EA1AB75646CDBDDD033D2E519A18 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:12Z' + - 'Ref A: 924CECB93ECF41C2B3796BA1E836C6E1 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:39Z' status: 200 OK code: 200 - duration: 82.7475ms - - id: 8 + duration: 1.1074001s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -551,17 +1178,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -569,18 +1194,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + content_length: 537 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-wd989ee-1724372388","location":"eastus2","name":"azdtest-wd989ee-1724372388","properties":{"correlationId":"aeb82b2ebe668c8fa13e58d543012a7a","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee","resourceName":"rg-azdtest-wd989ee","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT35.4018854S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"}],"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-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdvzh3dpvs2sus"},"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:08Z"},"environmentName":{"type":"String","value":"azdtest-wd989ee"},"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:45.3066357Z"},"tags":{"azd-env-name":"azdtest-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"},"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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:21 GMT + - Mon, 04 Nov 2024 19:06:40 GMT Expires: - "-1" Pragma: @@ -592,19 +1217,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - d102e436-92e3-4d33-8ead-7ce6079edbc3 + - d8497b80-124a-42b4-8f44-7a90f304eb58 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002121Z:d102e436-92e3-4d33-8ead-7ce6079edbc3 + - WESTUS2:20241104T190640Z:d8497b80-124a-42b4-8f44-7a90f304eb58 X-Msedge-Ref: - - 'Ref A: 8D613230277C4183A680C727631D6B5F Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:14Z' + - 'Ref A: 977AE3805A9C41C8B59D0053BEF77D87 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:40Z' status: 200 OK code: 200 - duration: 6.8297298s - - id: 9 + duration: 430.7544ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -623,10 +1250,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - 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 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -634,18 +1261,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Mon, 04 Nov 2024 19:06:40 GMT Expires: - "-1" Pragma: @@ -657,19 +1284,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 8398ea69-371a-432d-99e4-fabcd534d7ce + - 3cf0dae0-5f44-4eab-a9ac-485b7addca5f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:8398ea69-371a-432d-99e4-fabcd534d7ce + - WESTUS2:20241104T190641Z:3cf0dae0-5f44-4eab-a9ac-485b7addca5f X-Msedge-Ref: - - 'Ref A: 18BA3E41DC9B43C1A77630C8536617A9 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:21Z' + - 'Ref A: AD14C9C867ED49779B57D5EA1FB40879 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:40Z' status: 200 OK code: 200 - duration: 2.6135263s - - id: 10 + duration: 544.7431ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -690,10 +1319,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -703,7 +1332,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd989ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:08Z"},"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:45.3066357Z","duration":"PT35.4018854S","correlationId":"aeb82b2ebe668c8fa13e58d543012a7a","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-wd989ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd989ee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/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-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdvzh3dpvs2sus"},"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-wd989ee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:14Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:49.2804545Z","duration":"PT32.6940322S","correlationId":"3b4147641f49e567d9ecd6044d68e3cb","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-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wbd6db4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/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-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stp3dgpsshawl3c"},"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-wbd6db4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"}]}}' headers: Cache-Control: - no-cache @@ -712,7 +1341,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Mon, 04 Nov 2024 19:06:41 GMT Expires: - "-1" Pragma: @@ -724,19 +1353,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 38237189-ddbd-46ec-a425-76a39c5fb0a7 + - 4f912dfc-efe2-4826-8513-ead3f211034d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:38237189-ddbd-46ec-a425-76a39c5fb0a7 + - WESTUS2:20241104T190641Z:4f912dfc-efe2-4826-8513-ead3f211034d X-Msedge-Ref: - - 'Ref A: 2E01DFDFA1EB4D158200A69FCAB6E97D Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:24Z' + - 'Ref A: AE09938BF13943298E4F492C96C9CB99 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:41Z' status: 200 OK code: 200 - duration: 431.4761ms - - id: 11 + duration: 341.8212ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -757,10 +1388,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd989ee%27&api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wbd6db4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -770,7 +1401,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee","name":"rg-azdtest-wd989ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","DeleteAfter":"2024-08-23T01:20:08Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4","name":"rg-azdtest-wbd6db4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","DeleteAfter":"2024-11-04T20:05:14Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -779,7 +1410,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Mon, 04 Nov 2024 19:06:41 GMT Expires: - "-1" Pragma: @@ -791,19 +1422,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 9471774b-fdf0-41a1-8356-1cd519857e53 + - 1ceeaf9a-7220-4600-a6e1-8cc63682f49a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:9471774b-fdf0-41a1-8356-1cd519857e53 + - WESTUS2:20241104T190641Z:1ceeaf9a-7220-4600-a6e1-8cc63682f49a X-Msedge-Ref: - - 'Ref A: E8F55E9087FC4FB499F284921AEB6DCE Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:24Z' + - 'Ref A: 90FCB0CBAA18414C9BCAC8EEF5177261 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:41Z' status: 200 OK code: 200 - duration: 62.2159ms - - id: 12 + duration: 49.9258ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -824,10 +1457,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/resources?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -837,7 +1470,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus","name":"stdvzh3dpvs2sus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c","name":"stp3dgpsshawl3c","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4"}}]}' headers: Cache-Control: - no-cache @@ -846,7 +1479,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:25 GMT + - Mon, 04 Nov 2024 19:06:41 GMT Expires: - "-1" Pragma: @@ -858,19 +1491,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 52efcb89-94fa-4add-9d18-3bbe45ec702c + - 2a79e384-0695-4517-a81a-e4f2f5e50249 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002125Z:52efcb89-94fa-4add-9d18-3bbe45ec702c + - WESTUS2:20241104T190641Z:2a79e384-0695-4517-a81a-e4f2f5e50249 X-Msedge-Ref: - - 'Ref A: 5427329B4D9948269E1787ADBBED592D Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:24Z' + - 'Ref A: 2A0581F8654F4AAE9D2799F4897E562D Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:41Z' status: 200 OK code: 200 - duration: 618.5581ms - - id: 13 + duration: 204.9386ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -891,10 +1526,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -904,7 +1539,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd989ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:08Z"},"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:45.3066357Z","duration":"PT35.4018854S","correlationId":"aeb82b2ebe668c8fa13e58d543012a7a","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-wd989ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd989ee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/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-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdvzh3dpvs2sus"},"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-wd989ee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:14Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:49.2804545Z","duration":"PT32.6940322S","correlationId":"3b4147641f49e567d9ecd6044d68e3cb","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-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wbd6db4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/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-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stp3dgpsshawl3c"},"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-wbd6db4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"}]}}' headers: Cache-Control: - no-cache @@ -913,7 +1548,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:25 GMT + - Mon, 04 Nov 2024 19:06:41 GMT Expires: - "-1" Pragma: @@ -925,19 +1560,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - f4c34119-6366-4436-a014-02f1a368f19d + - 5905f2aa-c0ac-42ef-b457-d8f821e51246 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002125Z:f4c34119-6366-4436-a014-02f1a368f19d + - WESTUS2:20241104T190642Z:5905f2aa-c0ac-42ef-b457-d8f821e51246 X-Msedge-Ref: - - 'Ref A: 7CF62CA0479C49DC9DE3766011964177 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:25Z' + - 'Ref A: 1832208664BF4AF3AB938EA6EDBB079C Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:41Z' status: 200 OK code: 200 - duration: 362.3188ms - - id: 14 + duration: 406.6489ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -958,10 +1595,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wd989ee%27&api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-wbd6db4%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -971,7 +1608,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee","name":"rg-azdtest-wd989ee","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","DeleteAfter":"2024-08-23T01:20:08Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4","name":"rg-azdtest-wbd6db4","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","DeleteAfter":"2024-11-04T20:05:14Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -980,7 +1617,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:25 GMT + - Mon, 04 Nov 2024 19:06:41 GMT Expires: - "-1" Pragma: @@ -992,19 +1629,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - f169e030-c29b-4f13-95e8-16dc48f98964 + - c62b4a59-ca93-4f53-8bad-b6e60877467e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002126Z:f169e030-c29b-4f13-95e8-16dc48f98964 + - WESTUS2:20241104T190642Z:c62b4a59-ca93-4f53-8bad-b6e60877467e X-Msedge-Ref: - - 'Ref A: 7C24B0DF958A4E77843003065C57F634 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:25Z' + - 'Ref A: 6DA0C1AD030F4D05801D8C77202EA94A Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:42Z' status: 200 OK code: 200 - duration: 64.0082ms - - id: 15 + duration: 65.4417ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1025,10 +1664,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/resources?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1038,7 +1677,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus","name":"stdvzh3dpvs2sus","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c","name":"stp3dgpsshawl3c","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4"}}]}' headers: Cache-Control: - no-cache @@ -1047,7 +1686,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:26 GMT + - Mon, 04 Nov 2024 19:06:42 GMT Expires: - "-1" Pragma: @@ -1059,19 +1698,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1098" X-Ms-Request-Id: - - e5beeb57-f910-4eee-81ca-c1f5c6056e40 + - 1d07af33-e398-424a-9b88-34283cd58ccb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002126Z:e5beeb57-f910-4eee-81ca-c1f5c6056e40 + - WESTUS2:20241104T190642Z:1d07af33-e398-424a-9b88-34283cd58ccb X-Msedge-Ref: - - 'Ref A: E4A3DBFF32EB4262821AB341F0E08077 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:26Z' + - 'Ref A: 97AAB2BCA2934AF9B27CB0EB242A2C7B Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:42Z' status: 200 OK code: 200 - duration: 590.382ms - - id: 16 + duration: 172.3673ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1092,10 +1733,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wd989ee?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wbd6db4?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1112,11 +1753,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:21:28 GMT + - Mon, 04 Nov 2024 19:06:43 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRDk4OUVFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599693499277359&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=hHk4cdl5TQy9xZzl4f7PdUpoUjyWN4XFvir0NaEGVTgAnpzJd7mGNuKtYzkovPq-ps9n7t-X5VkqtjPpArW-XkX9IRkKrsMypTztcCLghZY9Sjq1cP34mFgQ8NZZQwdWnP-rirLihGM2PZpj2Vhrs-M-z7Kf13o_aFDWmTXGsYa_lQlQ2nQnCvxxzVY9lf9fm1kq1kn0zyK6g2viwHaTGbJaqvx76pO97afLNV_lLFTZRPkqXgp5CHhHEUselPOWLF1HAZEHQDRMA14EczCsbjKAXG3T7MlogeX549EaU1vpil2PH7GyYR8z6Fd-xMuTgbLapIYbP4WbEBrSfjknBg&h=gFFeCwkrIXGdH-5rGIW185lKi-AjEGDct8h9tRN_Ieo + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQkQ2REI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663440647455292&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=BPXJQPe89A9lIemaRYYyNW5ijM8Q4CMzInpwcjncUzWq2N-J0e2vZIZgAzs1xl_Ly6s35Ji37GoTlTSmzvlqBXC2aEtfKgLNgZxBdwn3HPYMRep0pKYVLJbq-JB0puWLC0a7oskMm_rvxzA9oUroWCh2UBKJUesQ8kUQb7rhKHKQ4wXVsV0lw-shJLLBYDI-F-6tTCjzMuc9MrsSIxj7ZEktbZ6ld3CSTpbfqBCkfelkBdA-ZPPPboiwIYfKfHPorPdE0HSJVaY_JNWbVFVYUF9mEqsa84LmDfn5irKXR0ku3IZQfCuuRHF0IZrLhvQh3-mrTMUqNztT_CDyZRw_Tw&h=IIVB_CX8RLPUAzFaupP4q18f-URhKA4hsnjJ900e2KU Pragma: - no-cache Retry-After: @@ -1128,19 +1769,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - 7794a2f0-db1d-4a53-87a9-f98d61a37a4b + - 1a409816-7faf-4751-80d6-198991bba8db X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002128Z:7794a2f0-db1d-4a53-87a9-f98d61a37a4b + - WESTUS2:20241104T190643Z:1a409816-7faf-4751-80d6-198991bba8db X-Msedge-Ref: - - 'Ref A: 9AB7EE927363480E959E6ABB6252490E Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:21:26Z' + - 'Ref A: DE143ABCDEFE428C9DD78FE81B39C6DD Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:06:42Z' status: 202 Accepted code: 202 - duration: 1.8551998s - - id: 17 + duration: 1.3401727s + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1159,10 +1802,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRDk4OUVFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599693499277359&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=hHk4cdl5TQy9xZzl4f7PdUpoUjyWN4XFvir0NaEGVTgAnpzJd7mGNuKtYzkovPq-ps9n7t-X5VkqtjPpArW-XkX9IRkKrsMypTztcCLghZY9Sjq1cP34mFgQ8NZZQwdWnP-rirLihGM2PZpj2Vhrs-M-z7Kf13o_aFDWmTXGsYa_lQlQ2nQnCvxxzVY9lf9fm1kq1kn0zyK6g2viwHaTGbJaqvx76pO97afLNV_lLFTZRPkqXgp5CHhHEUselPOWLF1HAZEHQDRMA14EczCsbjKAXG3T7MlogeX549EaU1vpil2PH7GyYR8z6Fd-xMuTgbLapIYbP4WbEBrSfjknBg&h=gFFeCwkrIXGdH-5rGIW185lKi-AjEGDct8h9tRN_Ieo + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQkQ2REI0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663440647455292&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=BPXJQPe89A9lIemaRYYyNW5ijM8Q4CMzInpwcjncUzWq2N-J0e2vZIZgAzs1xl_Ly6s35Ji37GoTlTSmzvlqBXC2aEtfKgLNgZxBdwn3HPYMRep0pKYVLJbq-JB0puWLC0a7oskMm_rvxzA9oUroWCh2UBKJUesQ8kUQb7rhKHKQ4wXVsV0lw-shJLLBYDI-F-6tTCjzMuc9MrsSIxj7ZEktbZ6ld3CSTpbfqBCkfelkBdA-ZPPPboiwIYfKfHPorPdE0HSJVaY_JNWbVFVYUF9mEqsa84LmDfn5irKXR0ku3IZQfCuuRHF0IZrLhvQh3-mrTMUqNztT_CDyZRw_Tw&h=IIVB_CX8RLPUAzFaupP4q18f-URhKA4hsnjJ900e2KU method: GET response: proto: HTTP/2.0 @@ -1179,7 +1822,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:22:44 GMT + - Mon, 04 Nov 2024 19:07:59 GMT Expires: - "-1" Pragma: @@ -1191,19 +1834,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 4f3c3a43-1119-47b8-a3d9-6a08918ecccf + - 6729f0bc-0655-45e0-adfc-302c4d22da03 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002245Z:4f3c3a43-1119-47b8-a3d9-6a08918ecccf + - WESTUS2:20241104T190759Z:6729f0bc-0655-45e0-adfc-302c4d22da03 X-Msedge-Ref: - - 'Ref A: 1247138CDB074C19B162C2A62D57A5B5 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:22:44Z' + - 'Ref A: 6E4DC1560BE241288EEBA768F9925A3F Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:07:59Z' status: 200 OK code: 200 - duration: 196.5362ms - - id: 18 + duration: 173.0737ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1224,10 +1869,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1237,7 +1882,7 @@ interactions: trailer: {} content_length: 2482 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wd989ee","azd-provision-param-hash":"391e745c76d1008bc9a25dbb27a23d87d9bf0de61cfba832a4a3a5475eeca73b"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wd989ee"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-08-23T01:20:08Z"},"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:45.3066357Z","duration":"PT35.4018854S","correlationId":"aeb82b2ebe668c8fa13e58d543012a7a","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-wd989ee","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wd989ee"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/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-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stdvzh3dpvs2sus"},"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-wd989ee"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wd989ee/providers/Microsoft.Storage/storageAccounts/stdvzh3dpvs2sus"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-wbd6db4","azd-provision-param-hash":"f5ad5930895cccaff0511c051e729bee709dcbd9efc9446e6c55fc487a365595"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-wbd6db4"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:14Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:49.2804545Z","duration":"PT32.6940322S","correlationId":"3b4147641f49e567d9ecd6044d68e3cb","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-wbd6db4","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-wbd6db4"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/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-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stp3dgpsshawl3c"},"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-wbd6db4"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wbd6db4/providers/Microsoft.Storage/storageAccounts/stp3dgpsshawl3c"}]}}' headers: Cache-Control: - no-cache @@ -1246,7 +1891,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:45 GMT + - Mon, 04 Nov 2024 19:07:59 GMT Expires: - "-1" Pragma: @@ -1258,19 +1903,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b7d9a8ef-3c7c-4268-a08c-e0525dff275d + - 871f824f-33e8-4258-a2ba-6bacf7380e7c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002245Z:b7d9a8ef-3c7c-4268-a08c-e0525dff275d + - WESTUS2:20241104T190800Z:871f824f-33e8-4258-a2ba-6bacf7380e7c X-Msedge-Ref: - - 'Ref A: E2B6907ECFF547B9AADF09A697972F9A Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:22:45Z' + - 'Ref A: 6961A9C5980B46E1A763C7BBEA5B11AC Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:07:59Z' status: 200 OK code: 200 - duration: 237.9237ms - - id: 19 + duration: 176.1402ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1281,7 +1928,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-wd989ee"}}' + 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-wbd6db4"}}' form: {} headers: Accept: @@ -1295,10 +1942,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1308,10 +1955,10 @@ interactions: trailer: {} content_length: 570 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wd989ee"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:22:48.7457519Z","duration":"PT0.0007506S","correlationId":"b85651efec2fd648a8b5566468b8cc4f","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wbd6db4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T19:08:01.6110561Z","duration":"PT0.0008479S","correlationId":"0d12797316fa690d9d2e21df7f245172","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388/operationStatuses/08584772343188947713?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078/operationStatuses/08584708596049580667?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -1319,7 +1966,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:48 GMT + - Mon, 04 Nov 2024 19:08:01 GMT Expires: - "-1" Pragma: @@ -1331,21 +1978,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 22059e81-d1a3-463d-9a9a-11ccf7b880d8 + - f67ba3fb-3b2c-4eae-aff2-0071ef0fa96f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002249Z:22059e81-d1a3-463d-9a9a-11ccf7b880d8 + - WESTUS2:20241104T190802Z:f67ba3fb-3b2c-4eae-aff2-0071ef0fa96f X-Msedge-Ref: - - 'Ref A: 7983B88DE9064E1EA07B60650F7346E4 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:22:45Z' + - 'Ref A: 8A59A7C24B35443796037375EB3E2828 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:08:00Z' status: 200 OK code: 200 - duration: 3.8520583s - - id: 20 + duration: 1.9116971s + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1364,10 +2013,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388/operationStatuses/08584772343188947713?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078/operationStatuses/08584708596049580667?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1386,7 +2035,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:19 GMT + - Mon, 04 Nov 2024 19:08:32 GMT Expires: - "-1" Pragma: @@ -1398,19 +2047,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 9d153401-64f4-4aa0-9af2-b2b909e368fe + - 2107b491-4d74-4ebe-b763-1a27687f2790 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002319Z:9d153401-64f4-4aa0-9af2-b2b909e368fe + - WESTUS2:20241104T190832Z:2107b491-4d74-4ebe-b763-1a27687f2790 X-Msedge-Ref: - - 'Ref A: 2F11FF45416A4A069E2CBC47F542F533 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:23:19Z' + - 'Ref A: 1CB29428C3B7491A8973E3568855FCFE Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:08:32Z' status: 200 OK code: 200 - duration: 433.2097ms - - id: 21 + duration: 367.7849ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1429,10 +2080,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388?api-version=2021-04-01 + - 0d12797316fa690d9d2e21df7f245172 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1442,7 +2093,7 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wd989ee-1724372388","name":"azdtest-wd989ee-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wd989ee"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:22:49.6233305Z","duration":"PT0.8783292S","correlationId":"b85651efec2fd648a8b5566468b8cc4f","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-wbd6db4-1730747078","name":"azdtest-wbd6db4-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-wbd6db4"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:08:02.3364755Z","duration":"PT0.7262673S","correlationId":"0d12797316fa690d9d2e21df7f245172","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -1451,7 +2102,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:20 GMT + - Mon, 04 Nov 2024 19:08:32 GMT Expires: - "-1" Pragma: @@ -1463,19 +2114,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b85651efec2fd648a8b5566468b8cc4f + - 0d12797316fa690d9d2e21df7f245172 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 0bbcc3f8-e869-4261-88be-df6edb622189 + - e2aadd79-2a83-4786-a59a-a2b1e37487cb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002320Z:0bbcc3f8-e869-4261-88be-df6edb622189 + - WESTUS2:20241104T190832Z:e2aadd79-2a83-4786-a59a-a2b1e37487cb X-Msedge-Ref: - - 'Ref A: DF318A80FDA147C089568170E61CDC88 Ref B: CO6AA3150218019 Ref C: 2024-08-23T00:23:19Z' + - 'Ref A: 6E28869D01D14F569259CF12E4BAD0C7 Ref B: CO6AA3150218053 Ref C: 2024-11-04T19:08:32Z' status: 200 OK code: 200 - duration: 394.256ms + duration: 206.5414ms --- -env_name: azdtest-wd989ee +env_name: azdtest-wbd6db4 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372388" +time: "1730747078" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml index 5116a675a6a..a72826280da 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_InfraCreateAndDeleteUpperCase.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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:19:58 GMT + - Mon, 04 Nov 2024 19:04:54 GMT Expires: - "-1" Pragma: @@ -56,19 +56,709 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 9ed86b73-5a7f-4bbe-9d76-87a40d98ff8a + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190454Z:9ed86b73-5a7f-4bbe-9d76-87a40d98ff8a + X-Msedge-Ref: + - 'Ref A: E83A7641671343878EC1D16ED813D71B Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:04:52Z' + status: 200 OK + code: 200 + duration: 2.9125341s + - id: 1 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + 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: 1785653 + 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1785653" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - 8ec77a24-325e-4deb-9f01-6de3723bef78 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190502Z:8ec77a24-325e-4deb-9f01-6de3723bef78 + X-Msedge-Ref: + - 'Ref A: 291DA9FFDB0E4B0F8DCBE7B00073845D Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:04:55Z' + status: 200 OK + code: 200 + duration: 7.4823777s + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1738781 + 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1738781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - da62b97e-55b1-4612-901b-62fb9d7e17a8 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190508Z:da62b97e-55b1-4612-901b-62fb9d7e17a8 + X-Msedge-Ref: + - 'Ref A: 702EB941B7954E939C7CD75874B97A41 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:02Z' + status: 200 OK + code: 200 + duration: 5.5037342s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1207133" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 74df83e0-e3eb-4c24-8a3d-f05d9773b96d + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190512Z:74df83e0-e3eb-4c24-8a3d-f05d9773b96d + X-Msedge-Ref: + - 'Ref A: EA164176663F488EACA24E1803CE6DEE Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:08Z' + status: 200 OK + code: 200 + duration: 3.8116759s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128484 + 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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "128484" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05:12 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 19f5a1a4-96b6-46ad-b2ff-fb5c72f18da6 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190513Z:19f5a1a4-96b6-46ad-b2ff-fb5c72f18da6 + X-Msedge-Ref: + - 'Ref A: 7ACA30538E2E495E8CD421B8BEB224CA Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:12Z' + status: 200 OK + code: 200 + duration: 1.3363479s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - c57f2401-686e-4b32-adf9-2f7a37ec1482 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190514Z:c57f2401-686e-4b32-adf9-2f7a37ec1482 + X-Msedge-Ref: + - 'Ref A: 21193D164EE1422A96FF01CBB874434F Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:13Z' + status: 200 OK + code: 200 + duration: 684.4665ms + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: + - Mon, 04 Nov 2024 19:05: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1098" + X-Ms-Request-Id: + - 56adafce-5dc8-44d1-8bcc-95de0a145202 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190514Z:56adafce-5dc8-44d1-8bcc-95de0a145202 + X-Msedge-Ref: + - 'Ref A: EBD8FE5583A0447C966E200FE0002D39 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:14Z' + status: 200 OK + code: 200 + duration: 194.5989ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4701 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"UpperCaseazdtest-wd8a040"},"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":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4701" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2049 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:14Z"},"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":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2049" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 2b4fd277-8c98-426b-9015-ad724276cd4f + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190516Z:2b4fd277-8c98-426b-9015-ad724276cd4f + X-Msedge-Ref: + - 'Ref A: 778AD68C20844709A35C126BED044B15 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:14Z' + status: 200 OK + code: 200 + duration: 1.8113547s + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 4701 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"UpperCaseazdtest-wd8a040"},"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":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "4701" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1617 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:16Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T19:05:18.9007018Z","duration":"PT0.0004862S","correlationId":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/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/UpperCaseazdtest-wd8a040-1730747078/operationStatuses/08584708597686013135?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "1617" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - deff9bb9-3b96-4a0b-aac7-607cd3212c8f + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190519Z:deff9bb9-3b96-4a0b-aac7-607cd3212c8f + X-Msedge-Ref: + - 'Ref A: DF3A2DA45F97468C9D8BF757E9AB0109 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:16Z' + status: 201 Created + code: 201 + duration: 3.4532313s + - id: 9 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078/operationStatuses/08584708597686013135?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: + - Mon, 04 Nov 2024 19:05:50 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d8feaf22-baab-4b6c-ad72-c1eff4b961a8 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190550Z:d8feaf22-baab-4b6c-ad72-c1eff4b961a8 + X-Msedge-Ref: + - 'Ref A: 64BAB73874094D1B92F770D7C66A40FA Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:50Z' + status: 200 OK + code: 200 + duration: 164.5915ms + - id: 10 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2572 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:16Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:47.3963513Z","duration":"PT28.4961357S","correlationId":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/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-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2572" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:05:50 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - b5f66c5f-75f3-414f-bfb1-67c826953435 + - 94dd2e27-978c-47b8-9a1c-45c82bbe84c2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001958Z:b5f66c5f-75f3-414f-bfb1-67c826953435 + - WESTUS2:20241104T190550Z:94dd2e27-978c-47b8-9a1c-45c82bbe84c2 X-Msedge-Ref: - - 'Ref A: D72D91B4F72C4D6C95622BA2BC3198A0 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:19:55Z' + - 'Ref A: F8B9AFD5688F4413AC4A5F0CFCE990FD Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:50Z' status: 200 OK code: 200 - duration: 3.1144209s - - id: 1 + duration: 181.5453ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -89,9 +779,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae 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 +790,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145188 + content_length: 1790709 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","location":"eastus2","name":"UpperCaseazdtest-wd8a040-1730747078","properties":{"correlationId":"577820ce7c5461fd58d250af25a267ae","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceName":"rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.4961357S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"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-11-04T20:05:16Z"},"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"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-11-04T19:05:47.3963513Z"},"tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2145188" + - "1790709" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:04 GMT + - Mon, 04 Nov 2024 19:05:58 GMT Expires: - "-1" Pragma: @@ -123,19 +813,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 50115861-5cbc-47f3-ab77-65266eaffed5 + - d3f4aef1-1e0c-4f23-ab11-3eccda7b5005 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002005Z:50115861-5cbc-47f3-ab77-65266eaffed5 + - WESTUS2:20241104T190558Z:d3f4aef1-1e0c-4f23-ab11-3eccda7b5005 X-Msedge-Ref: - - 'Ref A: 505385DBBD8E47A7B779960BFB6FDD49 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:19:58Z' + - 'Ref A: E3BC60C3A869436CAAD6AF5632DE4C76 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:50Z' status: 200 OK code: 200 - duration: 6.4532269s - - id: 2 + duration: 7.8158352s + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -154,10 +846,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - 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 + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -165,18 +857,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 1738781 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:06 GMT + - Mon, 04 Nov 2024 19:06:04 GMT Expires: - "-1" Pragma: @@ -188,68 +880,129 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 71ae4f1c-6595-42e6-9fb8-fc3b7494f604 + - 02b4d371-cc7f-4914-b140-365debc3168c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002007Z:71ae4f1c-6595-42e6-9fb8-fc3b7494f604 + - WESTUS2:20241104T190604Z:02b4d371-cc7f-4914-b140-365debc3168c X-Msedge-Ref: - - 'Ref A: B91EAAA3098C4AB8ADC61495401EFC8C Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:20:05Z' + - 'Ref A: F816AC4AD2474D4FB90A7F9F0AEA00BA Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:05:58Z' status: 200 OK code: 200 - duration: 1.691477s - - id: 3 + duration: 5.9359324s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4701 + 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":"UpperCaseazdtest-we624d8"},"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":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"}}' + body: "" form: {} headers: - Accept: - - application/json Accept-Encoding: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "4701" + - "1207133" Content-Type: - - application/json + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:06:09 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - edc81df9-40fc-4c2c-bbd1-938562b2e01f + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190609Z:edc81df9-40fc-4c2c-bbd1-938562b2e01f + X-Msedge-Ref: + - 'Ref A: 83C0B4718F034F89BC094604C5580C34 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:04Z' + status: 200 OK + code: 200 + duration: 4.4599611s + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 - method: PUT + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1617 + content_length: 128484 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-we624d8"},"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.6316417Z","duration":"PT0.0001512S","correlationId":"52820c19d9d1e23ed3607c7a604d0fad","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-we624d8"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388/operationStatuses/08584772344779901929?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "1617" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:10 GMT + - Mon, 04 Nov 2024 19:06:10 GMT Expires: - "-1" Pragma: @@ -261,21 +1014,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - ccd8f3b3-2c3e-4d3d-940c-3a971dda6598 + - 5e27cfe9-069b-4ca6-98a6-f0f325944fb4 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002010Z:ccd8f3b3-2c3e-4d3d-940c-3a971dda6598 + - WESTUS2:20241104T190610Z:5e27cfe9-069b-4ca6-98a6-f0f325944fb4 X-Msedge-Ref: - - 'Ref A: 8595F5D1259D4ACD9437F7A7D69832F2 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:20:07Z' - status: 201 Created - code: 201 - duration: 3.513831s - - id: 4 + - 'Ref A: 3B28EC8725DD45659E26F8307818FEF8 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:09Z' + status: 200 OK + code: 200 + duration: 1.2452539s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -294,10 +1047,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388/operationStatuses/08584772344779901929?api-version=2021-04-01 + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -305,18 +1058,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 537 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:11 GMT + - Mon, 04 Nov 2024 19:06:11 GMT Expires: - "-1" Pragma: @@ -328,19 +1081,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7687955a-5f49-44e9-a89b-54ef1fb10160 + - 51a20406-53bd-476f-87aa-0040950d4008 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002111Z:7687955a-5f49-44e9-a89b-54ef1fb10160 + - WESTUS2:20241104T190611Z:51a20406-53bd-476f-87aa-0040950d4008 X-Msedge-Ref: - - 'Ref A: 2C24E4679510414E92051F4B7DA6A97B Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: A1621763215941AD96965F07A3F8ED2E Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:10Z' status: 200 OK code: 200 - duration: 371.1807ms - - id: 5 + duration: 590.2875ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: + - Mon, 04 Nov 2024 19:06: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: + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f41744a3-aeab-4543-87e4-cca2b7a6c1d3 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190611Z:f41744a3-aeab-4543-87e4-cca2b7a6c1d3 + X-Msedge-Ref: + - 'Ref A: 4534E30228EC41F2886FFCBB14F12878 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:11Z' + status: 200 OK + code: 200 + duration: 381.4991ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -354,15 +1176,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 577820ce7c5461fd58d250af25a267ae + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -372,7 +1196,7 @@ interactions: trailer: {} content_length: 2572 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-we624d8"},"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:44.2959531Z","duration":"PT34.6644626S","correlationId":"52820c19d9d1e23ed3607c7a604d0fad","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-we624d8"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/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-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:16Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:47.3963513Z","duration":"PT28.4961357S","correlationId":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/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-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}]}}' headers: Cache-Control: - no-cache @@ -381,7 +1205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:11 GMT + - Mon, 04 Nov 2024 19:06:11 GMT Expires: - "-1" Pragma: @@ -393,19 +1217,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 577820ce7c5461fd58d250af25a267ae + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 1cdc3e52-844a-43da-9ab3-de14e9ff7ef5 + - 8ea9a230-4faf-4f16-894f-ac5b83de28a7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002112Z:1cdc3e52-844a-43da-9ab3-de14e9ff7ef5 + - WESTUS2:20241104T190611Z:8ea9a230-4faf-4f16-894f-ac5b83de28a7 X-Msedge-Ref: - - 'Ref A: E9F0B46EFDB440EF981565DBE0FA844C Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: 89EEC51AFBA1465C8D22ABFF69B18646 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:11Z' status: 200 OK code: 200 - duration: 366.8228ms - - id: 6 + duration: 184.3577ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-wd8a040%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","name":"rg-UpperCaseazdtest-wd8a040","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","DeleteAfter":"2024-11-04T20:05:16Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "423" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:06: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: + - 6a4199b6-e065-4e68-8adb-46c4525a7afe + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 6a4199b6-e065-4e68-8adb-46c4525a7afe + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T190613Z:6a4199b6-e065-4e68-8adb-46c4525a7afe + X-Msedge-Ref: + - 'Ref A: F7E6738D78ED40B08EDFF0BA42D68B3D Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:13Z' + status: 200 OK + code: 200 + duration: 80.5093ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -426,9 +1319,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 904fa2ece9046cc3cbdfc44711b9fcb7 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -437,18 +1330,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + content_length: 1790709 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/UpperCaseazdtest-we624d8-1724372388","location":"eastus2","name":"UpperCaseazdtest-we624d8-1724372388","properties":{"correlationId":"52820c19d9d1e23ed3607c7a604d0fad","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceName":"rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT34.6644626S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"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":"UpperCaseazdtest-we624d8"},"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:44.2959531Z"},"tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","location":"eastus2","name":"UpperCaseazdtest-wd8a040-1730747078","properties":{"correlationId":"577820ce7c5461fd58d250af25a267ae","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceName":"rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.4961357S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"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-11-04T20:05:16Z"},"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"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-11-04T19:05:47.3963513Z"},"tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "1790709" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:19 GMT + - Mon, 04 Nov 2024 19:06:23 GMT Expires: - "-1" Pragma: @@ -460,19 +1353,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - e9f45730-40ac-4918-88e7-631ac835ae95 + - 4330c93e-62a2-4c97-bcd9-022e8b0cf99c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002120Z:e9f45730-40ac-4918-88e7-631ac835ae95 + - WESTUS2:20241104T190623Z:4330c93e-62a2-4c97-bcd9-022e8b0cf99c X-Msedge-Ref: - - 'Ref A: 9344B6B4791548629E7DEA7FD8D8DBF8 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:12Z' + - 'Ref A: 6B57ED813EE34D028486AD22CA15ED8D Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:16Z' status: 200 OK code: 200 - duration: 7.8526362s - - id: 7 + duration: 6.6622141s + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -491,10 +1386,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - 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 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -502,18 +1397,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 1738781 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:21 GMT + - Mon, 04 Nov 2024 19:06:27 GMT Expires: - "-1" Pragma: @@ -525,19 +1420,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 8137e64c-824a-4a5e-98ab-9c2a4cbbc4ce + - 5b7f3a05-f3b1-4855-8086-6f5363e9ad3f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002122Z:8137e64c-824a-4a5e-98ab-9c2a4cbbc4ce + - WESTUS2:20241104T190627Z:5b7f3a05-f3b1-4855-8086-6f5363e9ad3f X-Msedge-Ref: - - 'Ref A: 8CC12A420EEE490F9D080331B4AE9550 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:20Z' + - 'Ref A: 9CA328C73DDE405B8E2811D8FFBC1236 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:23Z' status: 200 OK code: 200 - duration: 1.9278351s - - id: 8 + duration: 3.9085392s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -551,17 +1448,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -569,18 +1464,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2572 + content_length: 1207133 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-we624d8"},"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:44.2959531Z","duration":"PT34.6644626S","correlationId":"52820c19d9d1e23ed3607c7a604d0fad","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-we624d8"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/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-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}]}}' + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2572" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:22 GMT + - Mon, 04 Nov 2024 19:06:31 GMT Expires: - "-1" Pragma: @@ -592,19 +1487,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52820c19d9d1e23ed3607c7a604d0fad + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - ea68aa5d-ea1c-4916-9e7c-5d6885075b0e + - 27a49284-3066-4606-b778-63188be21daf X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002122Z:ea68aa5d-ea1c-4916-9e7c-5d6885075b0e + - WESTUS2:20241104T190631Z:27a49284-3066-4606-b778-63188be21daf X-Msedge-Ref: - - 'Ref A: 45F6498201DE47CE9953721ABAFB0776 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:22Z' + - 'Ref A: 1F521AEEE9EE40FDAEF8A6DEEBE4062B Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:27Z' status: 200 OK code: 200 - duration: 363.2544ms - - id: 9 + duration: 3.6858531s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -618,15 +1515,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) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-we624d8%27&api-version=2021-04-01 + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -634,18 +1531,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 128484 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","name":"rg-UpperCaseazdtest-we624d8","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "423" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:23 GMT + - Mon, 04 Nov 2024 19:06:33 GMT Expires: - "-1" Pragma: @@ -657,19 +1554,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9f26efa9-52ab-4d93-9fa7-6f601d433be6 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - 9f26efa9-52ab-4d93-9fa7-6f601d433be6 + - ed1123da-1822-4120-b911-d9a20634f75b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002123Z:9f26efa9-52ab-4d93-9fa7-6f601d433be6 + - WESTUS2:20241104T190633Z:ed1123da-1822-4120-b911-d9a20634f75b X-Msedge-Ref: - - 'Ref A: 7370C585708F45478524A0512FC32710 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:23Z' + - 'Ref A: B7A5455020AA48B3984101805FCCD0CE Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:31Z' status: 200 OK code: 200 - duration: 59.5127ms - - id: 10 + duration: 1.6705766s + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -683,17 +1582,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -701,18 +1598,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + content_length: 537 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/UpperCaseazdtest-we624d8-1724372388","location":"eastus2","name":"UpperCaseazdtest-we624d8-1724372388","properties":{"correlationId":"52820c19d9d1e23ed3607c7a604d0fad","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceName":"rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT34.6644626S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}],"outputs":{"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"array":{"type":"Array","value":[true,"abc",1234]},"azurE_STORAGE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"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":"UpperCaseazdtest-we624d8"},"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:44.2959531Z"},"tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:31 GMT + - Mon, 04 Nov 2024 19:06:33 GMT Expires: - "-1" Pragma: @@ -724,19 +1621,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1098" X-Ms-Request-Id: - - f06d5b63-8f59-46dc-8def-f95d39c91a7c + - 8569a4ad-606a-4b24-bb7f-c1a4e938984d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002132Z:f06d5b63-8f59-46dc-8def-f95d39c91a7c + - WESTUS2:20241104T190633Z:8569a4ad-606a-4b24-bb7f-c1a4e938984d X-Msedge-Ref: - - 'Ref A: B80677896B5E4EEABEC36BBAE32AC1E9 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:26Z' + - 'Ref A: 0DE4C18240D74F9B979410C11978D55D Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:33Z' status: 200 OK code: 200 - duration: 6.2542285s - - id: 11 + duration: 407.3079ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -755,10 +1654,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - 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 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -766,18 +1665,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:33 GMT + - Mon, 04 Nov 2024 19:06:33 GMT Expires: - "-1" Pragma: @@ -789,19 +1688,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 612cf77c-2142-4cb5-ba9b-33e2172b94f5 + - 92958c33-3aa3-427f-bb2b-fbad0fe28421 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002134Z:612cf77c-2142-4cb5-ba9b-33e2172b94f5 + - WESTUS2:20241104T190633Z:92958c33-3aa3-427f-bb2b-fbad0fe28421 X-Msedge-Ref: - - 'Ref A: C03636DDAD2C4F609A325FE7E48703EE Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:32Z' + - 'Ref A: 8D5A25C89F774C7AB8314FB72E746679 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:33Z' status: 200 OK code: 200 - duration: 1.7788275s - - id: 12 + duration: 218.4935ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -822,10 +1723,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -835,7 +1736,7 @@ interactions: trailer: {} content_length: 2572 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-we624d8"},"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:44.2959531Z","duration":"PT34.6644626S","correlationId":"52820c19d9d1e23ed3607c7a604d0fad","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-we624d8"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/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-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:16Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:47.3963513Z","duration":"PT28.4961357S","correlationId":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/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-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}]}}' headers: Cache-Control: - no-cache @@ -844,7 +1745,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:34 GMT + - Mon, 04 Nov 2024 19:06:33 GMT Expires: - "-1" Pragma: @@ -856,19 +1757,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7ab6b3ab-0b14-4441-93af-40957272ef05 + - a13c0a22-3bd6-4b7f-a7ff-4666f642a775 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002134Z:7ab6b3ab-0b14-4441-93af-40957272ef05 + - WESTUS2:20241104T190634Z:a13c0a22-3bd6-4b7f-a7ff-4666f642a775 X-Msedge-Ref: - - 'Ref A: 9AAB662EFE154D95A118219994632C93 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:34Z' + - 'Ref A: F8D3721F4E7D478DAD3F4514AA0F7AE8 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:33Z' status: 200 OK code: 200 - duration: 448.4958ms - - id: 13 + duration: 181.6288ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -889,10 +1792,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-we624d8%27&api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-wd8a040%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -902,7 +1805,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","name":"rg-UpperCaseazdtest-we624d8","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","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-UpperCaseazdtest-wd8a040","name":"rg-UpperCaseazdtest-wd8a040","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","DeleteAfter":"2024-11-04T20:05:16Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -911,7 +1814,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:34 GMT + - Mon, 04 Nov 2024 19:06:34 GMT Expires: - "-1" Pragma: @@ -923,19 +1826,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - c7d03a13-4f20-46c8-9139-20b03bbf1bbc + - 4a80adde-19c4-428a-918f-cbcbf7c9a79d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002134Z:c7d03a13-4f20-46c8-9139-20b03bbf1bbc + - WESTUS2:20241104T190634Z:4a80adde-19c4-428a-918f-cbcbf7c9a79d X-Msedge-Ref: - - 'Ref A: C6AC50E229C54CE59D6258A20E5B5ED7 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:34Z' + - 'Ref A: E12B027DA6FB4F53940F1BD2C9C8BF8C Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:34Z' status: 200 OK code: 200 - duration: 87.5695ms - - id: 14 + duration: 92.3785ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -956,10 +1861,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/resources?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -969,7 +1874,7 @@ interactions: trailer: {} content_length: 382 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok","name":"stfxoyf5s5cfxok","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6","name":"st4inyz3etrvvs6","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040"}}]}' headers: Cache-Control: - no-cache @@ -978,7 +1883,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Mon, 04 Nov 2024 19:06:34 GMT Expires: - "-1" Pragma: @@ -990,19 +1895,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 48b37f12-dfc0-495a-89c8-77dc81673cfe + - 54cf5e88-c062-44f8-a86d-4ba4a052177d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:48b37f12-dfc0-495a-89c8-77dc81673cfe + - WESTUS2:20241104T190634Z:54cf5e88-c062-44f8-a86d-4ba4a052177d X-Msedge-Ref: - - 'Ref A: 8371436976604E459F62403518E2CD54 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:34Z' + - 'Ref A: A8188C822E264B53BF78ED1BE6AAC754 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:34Z' status: 200 OK code: 200 - duration: 987.1076ms - - id: 15 + duration: 243.9256ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1023,10 +1930,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1036,7 +1943,7 @@ interactions: trailer: {} content_length: 2572 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-we624d8"},"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:44.2959531Z","duration":"PT34.6644626S","correlationId":"52820c19d9d1e23ed3607c7a604d0fad","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-we624d8"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/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-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:16Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:47.3963513Z","duration":"PT28.4961357S","correlationId":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/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-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}]}}' headers: Cache-Control: - no-cache @@ -1045,7 +1952,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Mon, 04 Nov 2024 19:06:34 GMT Expires: - "-1" Pragma: @@ -1057,19 +1964,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 0a1eb5e4-79cd-44fb-9cec-8f0d6ad60676 + - abb8d9b7-8d77-4f7d-b91b-890feb7c31c1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:0a1eb5e4-79cd-44fb-9cec-8f0d6ad60676 + - WESTUS2:20241104T190634Z:abb8d9b7-8d77-4f7d-b91b-890feb7c31c1 X-Msedge-Ref: - - 'Ref A: 92907DC0D0F348429741DD9B3553C58C Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: EBBB20528BFC45C5B9582F084EF40A64 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:34Z' status: 200 OK code: 200 - duration: 427.5103ms - - id: 16 + duration: 336.8899ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1090,10 +1999,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-we624d8%27&api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27UpperCaseazdtest-wd8a040%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1103,7 +2012,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","name":"rg-UpperCaseazdtest-we624d8","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","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-UpperCaseazdtest-wd8a040","name":"rg-UpperCaseazdtest-wd8a040","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","DeleteAfter":"2024-11-04T20:05:16Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1112,7 +2021,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Mon, 04 Nov 2024 19:06:34 GMT Expires: - "-1" Pragma: @@ -1124,19 +2033,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 6bb3a6e6-ebdc-4ad1-9ff1-f3836336242a + - 44e915c6-4068-4f79-95bb-23e71a82da2e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:6bb3a6e6-ebdc-4ad1-9ff1-f3836336242a + - WESTUS2:20241104T190634Z:44e915c6-4068-4f79-95bb-23e71a82da2e X-Msedge-Ref: - - 'Ref A: 66B02E07EB014D2CA92FC808C450BC59 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:36Z' + - 'Ref A: CAB1565283C647429F3EC234FB4CBFBD Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:34Z' status: 200 OK code: 200 - duration: 82.403ms - - id: 17 + duration: 51.9369ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1157,10 +2068,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/resources?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1170,7 +2081,7 @@ interactions: trailer: {} content_length: 382 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok","name":"stfxoyf5s5cfxok","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6","name":"st4inyz3etrvvs6","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040"}}]}' headers: Cache-Control: - no-cache @@ -1179,7 +2090,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:36 GMT + - Mon, 04 Nov 2024 19:06:34 GMT Expires: - "-1" Pragma: @@ -1191,19 +2102,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - c587aa05-cffe-4159-9ba0-2056634e3b3c + - e02a5b42-5c69-44ce-9441-708d3bad04b1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002137Z:c587aa05-cffe-4159-9ba0-2056634e3b3c + - WESTUS2:20241104T190635Z:e02a5b42-5c69-44ce-9441-708d3bad04b1 X-Msedge-Ref: - - 'Ref A: 4D51065869FB4949B01F1618081E8847 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:36Z' + - 'Ref A: 039EF1948BD9480BBC338FF79851E7E1 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:34Z' status: 200 OK code: 200 - duration: 912.4817ms - - id: 18 + duration: 182.79ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1224,10 +2137,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-UpperCaseazdtest-we624d8?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-UpperCaseazdtest-wd8a040?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1244,11 +2157,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:21:38 GMT + - Mon, 04 Nov 2024 19:06:36 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkRXRTYyNEQ4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599694062229106&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=fF80Ijexv-t2ooidy9TMru8tRWLgtUElHEC7RqwD3IMtozJoXKj4ihJ2kLW_yRm1mOeOLeqLkMAifz_NHBBaHfbx2FdfBtNLVfSnh6skAfZfNVgDuVDj1CT2SmgImhkYvA_w-GNJZLDt6_8PHN3GpXGPQyH1SS-hmWd4UVobuvoldJs41YYYBYeJ3Ww2w51fLmTrrnWHNV4EqTpnh4Kxh2VPGeynhmakXF-amBVB9W1KlFU3sboDA8BE7pqOJKFPCiqRMj1-qL2JNH2YL2V_j0omP5VHoNi0PzycJuOq50CUAwqcPseirhWo_-65DWxjSsjq-LcuQgPYirwf09b5FQ&h=-tEbecdu8t4LWZ8cFRe-pJXHDnKYlczj4lrSjA3LXMo + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkRXRDhBMDQwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663440568553648&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=cdibIViIrBcJuo2nzk8d8l6Jmcy3TaYp25discpYL7gX-645y2qdgx8sI_Ni0Uvy5ujUjZscaZuWorsbsDndmzMnr3c-dtFuLuejS8DUH2axwwnEeV_TYNWdFc0Uj1Z8z8cBq-ovWWQWr8RlmLDXblMAU5ZyDP5PPymk6A2haBsTIozoTNS0NbhwNuY7Msm8D-FQQ8kqqmAAei0x5M8GCYYTHhIjvAxZh1LWWmSICk2cngS1JJGUul3Xa04ter2GGCu-f4HWNFHIqKQXuhF5xoYcBEN140N0-D0kXd_Jj9pYQ9_Kf_mQCBQzUrfz914Z3_sgrjrhHh_Vvb9DNwpoGw&h=MpjM1Fw3k1R04GbuP4caY4Pz8268KBP-WUk0WM3Awbs Pragma: - no-cache Retry-After: @@ -1260,19 +2173,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - d6f7cc42-f1ef-4a27-bd72-a2382a11e61c + - 7aa93750-13f2-4787-acc0-264ae3a8d732 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002139Z:d6f7cc42-f1ef-4a27-bd72-a2382a11e61c + - WESTUS2:20241104T190636Z:7aa93750-13f2-4787-acc0-264ae3a8d732 X-Msedge-Ref: - - 'Ref A: CCFA941655FF42C38D0D6513CA126F68 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:21:37Z' + - 'Ref A: 0B41A907E3C8432883BDA1F7715657D7 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:06:35Z' status: 202 Accepted code: 202 - duration: 1.9203488s - - id: 19 + duration: 1.0100452s + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1291,10 +2206,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkRXRTYyNEQ4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599694062229106&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=fF80Ijexv-t2ooidy9TMru8tRWLgtUElHEC7RqwD3IMtozJoXKj4ihJ2kLW_yRm1mOeOLeqLkMAifz_NHBBaHfbx2FdfBtNLVfSnh6skAfZfNVgDuVDj1CT2SmgImhkYvA_w-GNJZLDt6_8PHN3GpXGPQyH1SS-hmWd4UVobuvoldJs41YYYBYeJ3Ww2w51fLmTrrnWHNV4EqTpnh4Kxh2VPGeynhmakXF-amBVB9W1KlFU3sboDA8BE7pqOJKFPCiqRMj1-qL2JNH2YL2V_j0omP5VHoNi0PzycJuOq50CUAwqcPseirhWo_-65DWxjSsjq-LcuQgPYirwf09b5FQ&h=-tEbecdu8t4LWZ8cFRe-pJXHDnKYlczj4lrSjA3LXMo + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyRFVQUEVSQ0FTRUFaRFRFU1Q6MkRXRDhBMDQwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663440568553648&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=cdibIViIrBcJuo2nzk8d8l6Jmcy3TaYp25discpYL7gX-645y2qdgx8sI_Ni0Uvy5ujUjZscaZuWorsbsDndmzMnr3c-dtFuLuejS8DUH2axwwnEeV_TYNWdFc0Uj1Z8z8cBq-ovWWQWr8RlmLDXblMAU5ZyDP5PPymk6A2haBsTIozoTNS0NbhwNuY7Msm8D-FQQ8kqqmAAei0x5M8GCYYTHhIjvAxZh1LWWmSICk2cngS1JJGUul3Xa04ter2GGCu-f4HWNFHIqKQXuhF5xoYcBEN140N0-D0kXd_Jj9pYQ9_Kf_mQCBQzUrfz914Z3_sgrjrhHh_Vvb9DNwpoGw&h=MpjM1Fw3k1R04GbuP4caY4Pz8268KBP-WUk0WM3Awbs method: GET response: proto: HTTP/2.0 @@ -1311,7 +2226,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:23:41 GMT + - Mon, 04 Nov 2024 19:07:51 GMT Expires: - "-1" Pragma: @@ -1323,19 +2238,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - b83dc784-c1e0-488e-b4cb-9d5a23b93809 + - e33a01f9-d660-4ddc-85d7-8dba9ceb19e3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002341Z:b83dc784-c1e0-488e-b4cb-9d5a23b93809 + - WESTUS2:20241104T190752Z:e33a01f9-d660-4ddc-85d7-8dba9ceb19e3 X-Msedge-Ref: - - 'Ref A: 917EACE3E7CF4F41980DCBFD40429557 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:23:41Z' + - 'Ref A: 426883C71F5D405BAC3326FECD344894 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:07:51Z' status: 200 OK code: 200 - duration: 452.3143ms - - id: 20 + duration: 179.9232ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1356,10 +2273,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1369,7 +2286,7 @@ interactions: trailer: {} content_length: 2572 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-we624d8","azd-provision-param-hash":"f1a4fc4136db2cbac34068c1dd968653a802470b5904743ae0d5ec433448726c"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-we624d8"},"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:44.2959531Z","duration":"PT34.6644626S","correlationId":"52820c19d9d1e23ed3607c7a604d0fad","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-we624d8"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/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-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stfxoyf5s5cfxok"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-we624d8/providers/Microsoft.Storage/storageAccounts/stfxoyf5s5cfxok"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"UpperCaseazdtest-wd8a040","azd-provision-param-hash":"cfe5a2740619c395c8192a9ebe0a3bbe6fc8e3a00bf5b24e01c2df5c60c295ff"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"UpperCaseazdtest-wd8a040"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-04T20:05:16Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:05:47.3963513Z","duration":"PT28.4961357S","correlationId":"577820ce7c5461fd58d250af25a267ae","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-UpperCaseazdtest-wd8a040"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/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-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4inyz3etrvvs6"},"string":{"type":"String","value":"abc"},"bool":{"type":"Bool","value":true},"int":{"type":"Int","value":1234},"array":{"type":"Array","value":[true,"abc",1234]},"arraY_INT":{"type":"Array","value":[1,2,3]},"arraY_STRING":{"type":"Array","value":["elem1","elem2","elem3"]},"object":{"type":"Object","value":{"foo":"bar","inner":{"foo":"bar"},"array":[true,"abc",1234]}}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-UpperCaseazdtest-wd8a040/providers/Microsoft.Storage/storageAccounts/st4inyz3etrvvs6"}]}}' headers: Cache-Control: - no-cache @@ -1378,7 +2295,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:41 GMT + - Mon, 04 Nov 2024 19:07:52 GMT Expires: - "-1" Pragma: @@ -1390,19 +2307,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - dd8c0e35-a914-44e7-b491-ecf9fc836f9d + - 284e43c7-7f8b-4ce4-92a7-acdb1d633b8b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002341Z:dd8c0e35-a914-44e7-b491-ecf9fc836f9d + - WESTUS2:20241104T190752Z:284e43c7-7f8b-4ce4-92a7-acdb1d633b8b X-Msedge-Ref: - - 'Ref A: 928E4E9FE254424D88D8115DA768B38E Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:23:41Z' + - 'Ref A: 87B482A3D99C466288D4B77A28A01D9E Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:07:52Z' status: 200 OK code: 200 - duration: 215.6348ms - - id: 21 + duration: 185.7215ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1413,7 +2332,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-we624d8"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-wd8a040"}}' form: {} headers: Accept: @@ -1427,10 +2346,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1438,20 +2357,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 596 + content_length: 597 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-we624d8"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:23:44.273895Z","duration":"PT0.0003139S","correlationId":"c4166a2ccdbe0550272aeccf54ecc5b8","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-wd8a040"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T19:07:54.4570733Z","duration":"PT0.0000969S","correlationId":"904fa2ece9046cc3cbdfc44711b9fcb7","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388/operationStatuses/08584772342626517433?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078/operationStatuses/08584708596126675089?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "596" + - "597" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:44 GMT + - Mon, 04 Nov 2024 19:07:54 GMT Expires: - "-1" Pragma: @@ -1463,21 +2382,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - cac83725-9ffd-45ea-b96d-48dfb147f454 + - d279549a-8d69-4581-a421-ad1420fed68d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002344Z:cac83725-9ffd-45ea-b96d-48dfb147f454 + - WESTUS2:20241104T190754Z:d279549a-8d69-4581-a421-ad1420fed68d X-Msedge-Ref: - - 'Ref A: 1854D25E8A0D493BAA5FD67A141178BE Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:23:41Z' + - 'Ref A: 8C5D30BE49EF42CB8090E584BE9FFE64 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:07:52Z' status: 200 OK code: 200 - duration: 2.7267383s - - id: 22 + duration: 2.6354013s + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1496,10 +2417,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388/operationStatuses/08584772342626517433?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078/operationStatuses/08584708596126675089?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1518,7 +2439,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:15 GMT + - Mon, 04 Nov 2024 19:08:25 GMT Expires: - "-1" Pragma: @@ -1530,19 +2451,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - d7a16646-a096-486c-961a-3d7b461e9992 + - d9bd9d63-5d16-4b12-b9e9-017bbc407461 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002415Z:d7a16646-a096-486c-961a-3d7b461e9992 + - WESTUS2:20241104T190825Z:d9bd9d63-5d16-4b12-b9e9-017bbc407461 X-Msedge-Ref: - - 'Ref A: 845363A61652463C82B7D7DB9F6267E6 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:24:15Z' + - 'Ref A: 808AE32770E041FBA4D67562897E98ED Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:08:25Z' status: 200 OK code: 200 - duration: 368.1729ms - - id: 23 + duration: 171.3168ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1561,10 +2484,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388?api-version=2021-04-01 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1572,18 +2495,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 632 + content_length: 631 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-we624d8-1724372388","name":"UpperCaseazdtest-we624d8-1724372388","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-we624d8"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:23:45.0012132Z","duration":"PT0.7276321S","correlationId":"c4166a2ccdbe0550272aeccf54ecc5b8","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/UpperCaseazdtest-wd8a040-1730747078","name":"UpperCaseazdtest-wd8a040-1730747078","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"UpperCaseazdtest-wd8a040"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:07:57.3693054Z","duration":"PT2.912329S","correlationId":"904fa2ece9046cc3cbdfc44711b9fcb7","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "632" + - "631" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:15 GMT + - Mon, 04 Nov 2024 19:08:25 GMT Expires: - "-1" Pragma: @@ -1595,19 +2518,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c4166a2ccdbe0550272aeccf54ecc5b8 + - 904fa2ece9046cc3cbdfc44711b9fcb7 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 0a120d20-91c8-473e-b74a-902b6823fe44 + - e3bcd5e5-c391-4c5d-bcaf-3b929cdb39a3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002415Z:0a120d20-91c8-473e-b74a-902b6823fe44 + - WESTUS2:20241104T190825Z:e3bcd5e5-c391-4c5d-bcaf-3b929cdb39a3 X-Msedge-Ref: - - 'Ref A: 018B8F135BF64EFE8A1BB6FCEC3DFAB8 Ref B: CO6AA3150217053 Ref C: 2024-08-23T00:24:15Z' + - 'Ref A: 49489F66C20D47DAB2B90EC50513EC97 Ref B: CO6AA3150217023 Ref C: 2024-11-04T19:08:25Z' status: 200 OK code: 200 - duration: 381.9432ms + duration: 317.8286ms --- -env_name: UpperCaseazdtest-we624d8 +env_name: UpperCaseazdtest-wd8a040 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372388" +time: "1730747078" 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..7c912e1cd0d 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_ProvisionState.yaml @@ -22,9 +22,9 @@ 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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:23 GMT + - Tue, 05 Nov 2024 02:57:34 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 + 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 + - 4f36c707-ee30-4bb1-a7e5-e7a0b28b39c1 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173524Z:233130bd-be0e-4bfe-92f9-92c3421f15d0 + - WESTUS2:20241105T025735Z:4f36c707-ee30-4bb1-a7e5-e7a0b28b39c1 X-Msedge-Ref: - - 'Ref A: A231FE72EB7149529ED55BBF037C246C Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:21Z' + - 'Ref A: D344BB0B14AD423EA570801644705D66 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:33Z' status: 200 OK code: 200 - duration: 3.0025906s + duration: 2.1109257s - 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-we4a0b2"},"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: @@ -93,10 +95,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 6f65a3cefda5933d3d9d76b99f40c3e6 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/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, 05 Nov 2024 02:57:35 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/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXRTRBMEIyOjJEMTczMDc3NTQzMC1DNzQ4MTlDODoyRDdCN0I6MkQ0Qzg2OjJEQUFFRjoyRDhCQzVBODE4NkNEQyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638663722566498148&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=kKOjV7QLsmFij69awTVWK0MjuFktga3A8aTIWa6UHzwY_A8KkTO-oTkWRm2W54MKtQIFf_7fX1T1Y5T6iXSkr6y4DL_WcWv4uzFRCDaM7To1UttWa3EZRNZSmoTOlZV7zrbEY6t_MkvMW2m7YzBP_q6XUyOvLQlF_EKnL-TmPVtiP01vuspcjdhhKehUk2XTiqTm9o_OcNy_R5VQE8CPogK2hsdD_-UFldFCAZBL8REsJxM8UyZbxI2dyTgj2QGvQRP7BHRBGM01Af0E61bc0KQONoaLA8pK_tChBh_CYhLLml33q48zHf8PMma5y5mwl0gAtQ9UhcBw5e5rcusYXw&h=SBfF78GLC3EPS3_WHlm6vtl5Dei2gH94PHeTL8byzMA Pragma: - no-cache Retry-After: @@ -129,18 +131,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 + 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 + - c74819c8-7b7b-4c86-aaef-8bc5a8186cdc X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173525Z:347db793-811a-4bb3-9437-466f00e6356e + - WESTUS2:20241105T025736Z:c74819c8-7b7b-4c86-aaef-8bc5a8186cdc X-Msedge-Ref: - - 'Ref A: C7686E681DB84E428D5BBC1007C3A5D1 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:24Z' + - 'Ref A: 17AB27A95B98494E970F609DBA34CE40 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:35Z' status: 202 Accepted code: 202 - duration: 1.4152088s + duration: 1.389716s - id: 2 request: proto: HTTP/1.1 @@ -160,10 +164,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 6f65a3cefda5933d3d9d76b99f40c3e6 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXRTRBMEIyOjJEMTczMDc3NTQzMC1DNzQ4MTlDODoyRDdCN0I6MkQ0Qzg2OjJEQUFFRjoyRDhCQzVBODE4NkNEQyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638663722566498148&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=kKOjV7QLsmFij69awTVWK0MjuFktga3A8aTIWa6UHzwY_A8KkTO-oTkWRm2W54MKtQIFf_7fX1T1Y5T6iXSkr6y4DL_WcWv4uzFRCDaM7To1UttWa3EZRNZSmoTOlZV7zrbEY6t_MkvMW2m7YzBP_q6XUyOvLQlF_EKnL-TmPVtiP01vuspcjdhhKehUk2XTiqTm9o_OcNy_R5VQE8CPogK2hsdD_-UFldFCAZBL8REsJxM8UyZbxI2dyTgj2QGvQRP7BHRBGM01Af0E61bc0KQONoaLA8pK_tChBh_CYhLLml33q48zHf8PMma5y5mwl0gAtQ9UhcBw5e5rcusYXw&h=SBfF78GLC3EPS3_WHlm6vtl5Dei2gH94PHeTL8byzMA 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":"6f65a3cefda5933d3d9d76b99f40c3e6","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","changeType":"Create","after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","location":"eastus2","name":"rg-azdtest-we4a0b2","tags":{"azd-env-name":"azdtest-we4a0b2","BoolTag":"False","DeleteAfter":"2024-11-05T03:57:37Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"}},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","changeType":"Create","after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","kind":"StorageV2","location":"eastus2","name":"stezntqadabguyg","properties":{"allowBlobPublicAccess":false,"minimumTlsVersion":"TLS1_2"},"sku":{"name":"Standard_LRS"},"tags":{"azd-env-name":"azdtest-we4a0b2"},"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, 05 Nov 2024 02:57:51 GMT Expires: - "-1" Pragma: @@ -194,18 +198,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 + 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 + - 61ec4cff-dcbd-43f4-b799-79b6709dcb21 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173541Z:642398b9-4d8f-4d09-8243-2dbfae4fd074 + - WESTUS2:20241105T025752Z:61ec4cff-dcbd-43f4-b799-79b6709dcb21 X-Msedge-Ref: - - 'Ref A: FF286DEDB13746DEBC39D2BA1F0C415C Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:40Z' + - 'Ref A: 56DEF9E38CA441BAB44009DFF15E2E93 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:51Z' status: 200 OK code: 200 - duration: 1.099771s + duration: 570.7429ms - id: 3 request: proto: HTTP/1.1 @@ -227,10 +233,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 6f65a3cefda5933d3d9d76b99f40c3e6 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%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, 05 Nov 2024 02:57:51 GMT Expires: - "-1" Pragma: @@ -261,18 +267,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 + 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 + - 14eb5266-5734-4b94-a93c-a037632b30ac X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173541Z:4e1857f1-e981-4dfe-a84d-81eb6402b57d + - WESTUS2:20241105T025752Z:14eb5266-5734-4b94-a93c-a037632b30ac X-Msedge-Ref: - - 'Ref A: C8E4452EA415420D96C44ACBC7360CC4 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:41Z' + - 'Ref A: 755182694FD5445D82E1DC134BCA616A Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:52Z' status: 200 OK code: 200 - duration: 114.1419ms + duration: 89.8535ms - id: 4 request: proto: HTTP/1.1 @@ -294,9 +302,9 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 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: 35255 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/viva-rg-dos","name":"viva-rg-dos","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"11/06/2024 00:26:24"},"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/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhan","name":"rg-kashifkhan","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"11/10/2024 23:19: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-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/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-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-24T20:29:43.5161316Z","Owners":"ripark","ServiceDirectory":"messaging/eventgrid/aznamespaces","DoNotDelete":"Service team has setup special things on this resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-24T20:29:53.5675114Z","Owners":"ripark","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-11-24T20:30:01.92764Z","Owners":"ripark","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-poi","name":"anuchan-poi","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/20/2024 19:14:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-05T16:36:12.7311142Z","Owners":"swathip","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test","name":"rg-jairmyreetables-cosmos-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-05T19:49:12.1924511Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test-2","name":"rg-jairmyreetables-cosmos-test-2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-06T17:17:29.5664455Z"},"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","ServiceDirectory":"eventhub","DeleteAfter":"2024-11-06T00:29:30.4170476Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingplaywrighttesting","name":"rg-mreddingplaywrighttesting","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"mredding","DeleteAfter":"2024-11-06T15:14:57.5037519Z","ServiceDirectory":"playwrighttesting"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test-arm-template","name":"rg-jairmyreetables-cosmos-test-arm-template","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-06T17:25:43.0098562Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventgrid","name":"rg-llawrenceeventgrid","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventgrid","Owners":"llawrence","DeleteAfter":"2024-11-06T17:27:36.9085537Z"},"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","Owners":"llawrence","DeleteAfter":"2024-11-06T21:13:38.3123790Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-06T23:43:29.0216958Z","Owners":"larryo","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingservicebus","name":"rg-mreddingservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-14T20:33:47.6321168+00:00","Owners":"mredding","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-gearamatables","name":"rg-gearamatables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-09T22:05:22.0269094Z","ServiceDirectory":"tables","Owners":"gearama"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-yallappconfigtests","name":"rg-yallappconfigtests","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-10T00:50:00.3584357Z","Owners":"yall","ServiceDirectory":"appconfiguration"},"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/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-scbedd","name":"rg-scbedd","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"11/12/2024 03:24:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/connieyeh-false-processor-java-eventhubs-1","name":"connieyeh-false-processor-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","DeleteAfter":"2024-11-11T20:38:36.2081778Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/connieyeh-true-processor-java-eventhubs-1","name":"connieyeh-true-processor-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2024-11-11T20:38:37.0108639Z","BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkova-6122_ai","name":"rg-limolkova-6122_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"11/15/2024 00:26:27"},"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-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","tags":{"azd-env-name":"dev","tag1":"val","tag2":"val"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-aks-1","name":"rg-hemarina-aks-1","type":"Microsoft.Resources/resourceGroups","location":"australiacentral","tags":{"azd-env-name":"hemarina-aks-1","DeleteAfter":"11/10/2024 23:19:07"},"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/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-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-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-jstest","name":"yumeng-jstest","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/07/2024 23:16:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-hooligans","name":"rg-wabrez-hooligans","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/10/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-remote-test-1","name":"rg-hemarina-remote-test-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-remote-test-1","DeleteAfter":"11/10/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-dev","name":"rg-weilim-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"weilim-dev","DeleteAfter":"11/11/2024 23:20:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-aspire-empty","name":"rg-matell-aspire-empty","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-aspire-empty","DeleteAfter":"11/11/2024 23:20:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua1","name":"rg-shihua1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua1","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 04:53:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-py","name":"rg-tomenv11-4-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-py","DeleteAfter":"11/05/2024 08:42:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-shop1","name":"rg-tomenv11-4-shop1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-shop1","DeleteAfter":"11/05/2024 08:42:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-vscode-shop","name":"rg-tomenv11-4-vscode-shop","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-vscode-shop","DeleteAfter":"11/05/2024 08:42:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua5","name":"rg-shihua5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua5","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 08:42:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-stand","name":"rg-tomenv11-4-stand","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-stand","DeleteAfter":"11/05/2024 08:42:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua6","name":"rg-shihua6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua6","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 12:25:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-kv-general","name":"vivazqu-kv-general","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fff","DeleteAfter":"11/15/2024 00:26:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkovaai","name":"rg-limolkovaai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/06/2024 00:26:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-hoolis","name":"rg-wabrez-hoolis","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-azd-1","name":"rg-jinlong-azd-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-azd-1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-5-a","name":"rg-tomenv11-5-a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-5-a"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zimu","name":"rg-zimu","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zimu"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zedy-test-1105","name":"rg-zedy-test-1105","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zedy-test-1105"},"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/cm55304278066c492","name":"cm55304278066c492","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/23/2025 19:15:42","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llaw","name":"rg-llaw","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"ServiceDirectory":"eventgrid","Owners":"llawrence","DeleteAfter":"2024-11-06T17:38:05.4263918Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/05/2024 12:25:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mreddingtest","name":"mreddingtest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/06/2024 00:26:26"},"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" + - "35255" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:41 GMT + - Tue, 05 Nov 2024 02:57:51 GMT Expires: - "-1" Pragma: @@ -328,18 +336,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d69e9c1cdd97c7293cd6d5fe98c953eb + - 6f65a3cefda5933d3d9d76b99f40c3e6 + 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 + - 41ea7ca4-9b23-48f0-9b64-de4dad7f59af X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173542Z:e853cb7f-d35f-43ad-a31b-61b93a1f4542 + - WESTUS2:20241105T025752Z:41ea7ca4-9b23-48f0-9b64-de4dad7f59af X-Msedge-Ref: - - 'Ref A: 134057F80C6D4F968E439C0DDE2CDC9B Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:41Z' + - 'Ref A: 2809FCC7A7734E05BDEE5B0EC47FDFC0 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:52Z' status: 200 OK code: 200 - duration: 74.5231ms + duration: 70.9501ms - id: 5 request: proto: HTTP/1.1 @@ -361,9 +371,9 @@ 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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -372,18 +382,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:45 GMT + - Tue, 05 Nov 2024 02:57:57 GMT Expires: - "-1" Pragma: @@ -395,18 +405,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + 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 + - 7a03b429-dad8-4ead-903e-9f08069e2b98 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173546Z:c4f91a8c-2970-4d37-9dbf-1afcdee31f6e + - WESTUS2:20241105T025758Z:7a03b429-dad8-4ead-903e-9f08069e2b98 X-Msedge-Ref: - - 'Ref A: 78BF6097B5DA4FA3A4920C33B0668F34 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:44Z' + - 'Ref A: ED78158C01314DB2A3880E43D2F026A4 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:56Z' status: 200 OK code: 200 - duration: 2.5595169s + duration: 2.4015629s - id: 6 request: proto: HTTP/1.1 @@ -428,9 +440,9 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 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: 1855521 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=pZFNb4JAEIZ%2fi3uuya5CU72Ju6RWZoFllkZvRq1l10DSYkCM%2f71sUw891p7m653kmXcuZFuVdVGeNnVRlVjZfflJphfyKjLU2YhMy9Px%2bEDE7Ke8kHLf1snmoy7cwnJ%2fJlPCBk8DiasWutWQPHwrVNXcZmzkDZQNA%2bCHJtVrDjr1JA8CxY88pXkIWlCJAU8xn0vcvSkm4yijTcx1r9u2EmcedMKXfNH37EgWbJlpH5D6z7F5EWgnQmF1Vlw0YMQj2LSVHTTArScRxuR643eH%2fR2f%2fh9fGt0BWt%2bdEc%2bZzEQY6W7xCxUMtA51LiSqWaSzm%2ffuFUKrOBH38Xv0fvtxwWIEH7geg1lRMIdxnLFlqmWk6SR29udiIrDr7Q%2bDdS7eEzR9LliCdpe4ea8NXASzPcvDcEiu1%2bsX","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1953039" + - "1855521" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:50 GMT + - Tue, 05 Nov 2024 02:58:05 GMT Expires: - "-1" Pragma: @@ -462,18 +474,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1100" X-Ms-Request-Id: - - 30cf1883-2c34-415e-bfe0-26d04b0fdfc0 + - 4102109c-0803-4190-ac5b-9a595ee252b0 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173551Z:30cf1883-2c34-415e-bfe0-26d04b0fdfc0 + - WESTUS2:20241105T025806Z:4102109c-0803-4190-ac5b-9a595ee252b0 X-Msedge-Ref: - - 'Ref A: EC6BA2DA48594989AEB967B0D6C48C70 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:46Z' + - 'Ref A: 7AA986F964E54AA484255D130B172A22 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:58Z' status: 200 OK code: 200 - duration: 4.4360592s + duration: 7.3776236s - id: 7 request: proto: HTTP/1.1 @@ -493,10 +507,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFNb4JAEIZ%2fi3uuya5CU72Ju6RWZoFllkZvRq1l10DSYkCM%2f71sUw891p7m653kmXcuZFuVdVGeNnVRlVjZfflJphfyKjLU2YhMy9Px%2bEDE7Ke8kHLf1snmoy7cwnJ%2fJlPCBk8DiasWutWQPHwrVNXcZmzkDZQNA%2bCHJtVrDjr1JA8CxY88pXkIWlCJAU8xn0vcvSkm4yijTcx1r9u2EmcedMKXfNH37EgWbJlpH5D6z7F5EWgnQmF1Vlw0YMQj2LSVHTTArScRxuR643eH%2fR2f%2fh9fGt0BWt%2bdEc%2bZzEQY6W7xCxUMtA51LiSqWaSzm%2ffuFUKrOBH38Xv0fvtxwWIEH7geg1lRMIdxnLFlqmWk6SR29udiIrDr7Q%2bDdS7eEzR9LliCdpe4ea8NXASzPcvDcEiu1%2bsX method: GET response: proto: HTTP/2.0 @@ -504,18 +518,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + content_length: 1763443 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=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "1763443" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:53 GMT + - Tue, 05 Nov 2024 02:58:11 GMT Expires: - "-1" Pragma: @@ -527,18 +541,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + 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 + - 506956e8-2cbc-41e4-b812-834ace6414ca X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173554Z:3e2ec159-0ce6-4561-af0f-41d2e2e6bc52 + - WESTUS2:20241105T025811Z:506956e8-2cbc-41e4-b812-834ace6414ca X-Msedge-Ref: - - 'Ref A: 512DA9D5322E4BE6BF2FF715429C551F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:51Z' + - 'Ref A: 5E693FC7FA444550A1EE7EBA03803ADB Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:06Z' status: 200 OK code: 200 - duration: 2.8574516s + duration: 5.6350116s - id: 8 request: proto: HTTP/1.1 @@ -558,10 +574,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d method: GET response: proto: HTTP/2.0 @@ -569,18 +585,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 1218558 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=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "1218558" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:35:56 GMT + - Tue, 05 Nov 2024 02:58:15 GMT Expires: - "-1" Pragma: @@ -592,18 +608,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + 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 + - fe95dec5-5693-4636-b1f4-b40582440070 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173557Z:f21d0728-e923-45a6-8056-bea6b8735213 + - WESTUS2:20241105T025816Z:fe95dec5-5693-4636-b1f4-b40582440070 X-Msedge-Ref: - - 'Ref A: 89AFA32D934C4759B682D907B6789C01 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:54Z' + - 'Ref A: 09629D64402F4109A107D9C718282DCA Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:12Z' status: 200 OK code: 200 - duration: 3.1530796s + duration: 4.3000615s - id: 9 request: proto: HTTP/1.1 @@ -623,10 +641,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d method: GET response: proto: HTTP/2.0 @@ -634,18 +652,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 151382 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "151382" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:00 GMT + - Tue, 05 Nov 2024 02:58:17 GMT Expires: - "-1" Pragma: @@ -657,18 +675,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + 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 + - d3f93385-039b-419f-a09b-05c08c37d0c3 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173601Z:21e98ead-a205-4d97-a3c0-cb048badec0b + - WESTUS2:20241105T025818Z:d3f93385-039b-419f-a09b-05c08c37d0c3 X-Msedge-Ref: - - 'Ref A: DDA5C0B70A28485890711204A2BDB932 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:35:57Z' + - 'Ref A: EC432A6421274338ACBD213E98F5EB13 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:16Z' status: 200 OK code: 200 - duration: 4.2740767s + duration: 1.5234046s - id: 10 request: proto: HTTP/1.1 @@ -688,10 +708,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -699,18 +719,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:04 GMT + - Tue, 05 Nov 2024 02:58:17 GMT Expires: - "-1" Pragma: @@ -722,18 +742,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - ba422c91-9677-4055-8f27-cdbc8366b190 + - 16573ffe-4acc-413f-bfaf-4d9baa8d1f82 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173605Z:ba422c91-9677-4055-8f27-cdbc8366b190 + - WESTUS2:20241105T025818Z:16573ffe-4acc-413f-bfaf-4d9baa8d1f82 X-Msedge-Ref: - - 'Ref A: 758547C895024F9884AB37E62CF9BBA9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:01Z' + - 'Ref A: 7691601090F9486E8CBE8D5E72760340 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:18Z' status: 200 OK code: 200 - duration: 3.3347108s + duration: 546.1095ms - id: 11 request: proto: HTTP/1.1 @@ -753,10 +775,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -764,18 +786,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 12 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":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:05 GMT + - Tue, 05 Nov 2024 02:58:18 GMT Expires: - "-1" Pragma: @@ -787,125 +809,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 14629a13-26f4-4323-b4a1-e01af0216b00 + - 840ba3fa-b9e8-4617-a139-c3d546c73e54 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173605Z:14629a13-26f4-4323-b4a1-e01af0216b00 + - WESTUS2:20241105T025818Z:840ba3fa-b9e8-4617-a139-c3d546c73e54 X-Msedge-Ref: - - 'Ref A: D828AF776A684264B3EA5276D05001C8 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:05Z' + - 'Ref A: F842370FC32B4BD0B0CEA34746416A94 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:18Z' status: 200 OK code: 200 - duration: 831.4673ms + duration: 291.778ms - id: 12 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-we4a0b2"},"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-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"}}' 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: - - 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 - 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" + - "4683" Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:36: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: - - 4c307ab2f0bde870c6a627816af4ae03 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" - X-Ms-Request-Id: - - f3e858d9-432f-46a9-ab8a-b65c962ba5dd - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173608Z:f3e858d9-432f-46a9-ab8a-b65c962ba5dd - X-Msedge-Ref: - - 'Ref A: 4CEEEB440C794A5BA1C60785FC3F0FE0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:05Z' - status: 200 OK - code: 200 - duration: 2.2755002s - - 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 + - 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 - method: GET + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 1959 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:58:19Z"},"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":"bd55913a702ee1a152495fe15b327637","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "1959" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:09 GMT + - Tue, 05 Nov 2024 02:58:19 GMT Expires: - "-1" Pragma: @@ -917,19 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - bd55913a702ee1a152495fe15b327637 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 555fe1ab-453b-4e61-b5d2-8da8e6b79349 + - 39445c35-3a88-4295-bcd5-5087a7ca9944 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173610Z:555fe1ab-453b-4e61-b5d2-8da8e6b79349 + - WESTUS2:20241105T025820Z:39445c35-3a88-4295-bcd5-5087a7ca9944 X-Msedge-Ref: - - 'Ref A: ED72CF9EB37D4D1C8CED0D9F832CE7BB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:08Z' + - 'Ref A: B227379589C9432FBA919CF01DE9BEAD Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:18Z' status: 200 OK code: 200 - duration: 1.9534925s - - id: 14 + duration: 1.7516161s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -940,7 +907,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]}}}}},"tags":{"azd-env-name":"azdtest-wb68583","azd-provision-param-hash":"cb82c11007736210dd5e61b06d4b7a61277621dc14fd255229e5beeb22e33110"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-we4a0b2"},"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-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"}}' form: {} headers: Accept: @@ -954,10 +921,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -967,10 +934,10 @@ interactions: trailer: {} content_length: 1554 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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:58:20Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T02:58:23.1507592Z","duration":"PT0.0003787S","correlationId":"bd55913a702ee1a152495fe15b327637","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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/08584748395148041802?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/operationStatuses/08584708313844656693?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -978,7 +945,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:36:12 GMT + - Tue, 05 Nov 2024 02:58:23 GMT Expires: - "-1" Pragma: @@ -990,21 +957,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 X-Ms-Deployment-Engine-Version: - - 1.109.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - e6f91ab2-66e1-4c5a-8d2e-c31dafc796b2 + - faeec022-8abc-41f4-b168-ae5dafc00673 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173613Z:e6f91ab2-66e1-4c5a-8d2e-c31dafc796b2 + - WESTUS2:20241105T025824Z:faeec022-8abc-41f4-b168-ae5dafc00673 X-Msedge-Ref: - - 'Ref A: AE7F60BE895745DBA630D7BB6EDF57CF Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:36:10Z' + - 'Ref A: B760B2D660BA4A9994FDA42E5D735718 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:20Z' status: 201 Created code: 201 - duration: 2.9417853s - - id: 15 + duration: 3.4646101s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -1023,10 +992,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/operationStatuses/08584708313844656693?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1045,7 +1014,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:13 GMT + - Tue, 05 Nov 2024 02:58:53 GMT Expires: - "-1" Pragma: @@ -1057,19 +1026,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + 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 + - f8134cbc-8c1e-4f9d-8b67-0644b5086ee5 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173714Z:764a534c-0e3f-4446-8d90-df697fc9bc06 + - WESTUS2:20241105T025854Z:f8134cbc-8c1e-4f9d-8b67-0644b5086ee5 X-Msedge-Ref: - - 'Ref A: 2E6574B6782E459581ED3D5478EFD531 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:14Z' + - 'Ref A: D908502B072C4502BE951C84CFB4DF79 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:54Z' status: 200 OK code: 200 - duration: 232.5505ms - - id: 16 + duration: 232.8108ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1088,10 +1059,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1101,7 +1072,7 @@ interactions: trailer: {} 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":"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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:58:20Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T02:58:53.9182969Z","duration":"PT30.7679164S","correlationId":"bd55913a702ee1a152495fe15b327637","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' headers: Cache-Control: - no-cache @@ -1110,7 +1081,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:13 GMT + - Tue, 05 Nov 2024 02:58:54 GMT Expires: - "-1" Pragma: @@ -1122,19 +1093,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - "1099" X-Ms-Request-Id: - - 0fb41b40-b107-46e7-a5f1-02ab20e3be14 + - 72ab1f2c-15db-4a54-96c8-b05213e0402f X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173714Z:0fb41b40-b107-46e7-a5f1-02ab20e3be14 + - WESTUS2:20241105T025854Z:72ab1f2c-15db-4a54-96c8-b05213e0402f X-Msedge-Ref: - - 'Ref A: 52064AD8AA894936A0F6BAD455F182AA Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:14Z' + - 'Ref A: C608DA228A5C43E7B2786E5A642BECA2 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:54Z' status: 200 OK code: 200 - duration: 213.2324ms - - id: 17 + duration: 370.5134ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1155,10 +1128,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - bd55913a702ee1a152495fe15b327637 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1168,7 +1141,7 @@ interactions: trailer: {} content_length: 396 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: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","name":"rg-azdtest-we4a0b2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","DeleteAfter":"2024-11-05T03:58:20Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1177,7 +1150,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:13 GMT + - Tue, 05 Nov 2024 02:58:54 GMT Expires: - "-1" Pragma: @@ -1189,19 +1162,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4c307ab2f0bde870c6a627816af4ae03 + - bd55913a702ee1a152495fe15b327637 + 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 + - 405c560f-6f8d-41ef-9347-5e2f08807c8a X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173714Z:09ab7d62-e45e-4f7d-933f-4c4124d0e762 + - WESTUS2:20241105T025855Z:405c560f-6f8d-41ef-9347-5e2f08807c8a X-Msedge-Ref: - - 'Ref A: D1F1E4FD7C2F466CBB78DB73E8391BB5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:14Z' + - 'Ref A: 00FDBA3CDDC4499DBEA7CFC8C36C1EE4 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:54Z' status: 200 OK code: 200 - duration: 56.826ms - - id: 18 + duration: 109.2572ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1222,9 +1197,9 @@ 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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - 49e49af06c84818e06d497c46a60c45b url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -1233,18 +1208,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:19 GMT + - Tue, 05 Nov 2024 02:59:01 GMT Expires: - "-1" Pragma: @@ -1256,19 +1231,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - 49e49af06c84818e06d497c46a60c45b + 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 + - 80613b71-a94f-4ef3-80be-701c3b0e6e08 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173720Z:79206407-b93e-410d-b51b-d41c7cfec2d0 + - WESTUS2:20241105T025901Z:80613b71-a94f-4ef3-80be-701c3b0e6e08 X-Msedge-Ref: - - 'Ref A: 10C73B1C657D49AD875F8318A3A1AB53 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:16Z' + - 'Ref A: 2BBE10EAA991437D9143994007C9CC78 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:59Z' status: 200 OK code: 200 - duration: 3.1098044s - - id: 19 + duration: 2.8787666s + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1279,7 +1256,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-we4a0b2"},"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: @@ -1293,10 +1270,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 49e49af06c84818e06d497c46a60c45b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/whatIf?api-version=2021-04-01 method: POST response: proto: HTTP/2.0 @@ -1313,11 +1290,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 19 Sep 2024 17:37:20 GMT + - Tue, 05 Nov 2024 02:59:02 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 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXRTRBMEIyOjJEMTczMDc3NTQzMC05NEEzRTU2MDoyRDA0NEY6MkQ0MjU3OjJEQkM0NDoyRDMwN0EyMTJBNDMxRCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638663723433866379&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=oyHNSrqjYMYDmXWBNIVzCCQ85zCRnhnPXNnSiBQnnRIj3pEbf9o2RQe6bkkOj0k6RC8pWAvMNHkNpeR0uNCNug5mv6wx1DWxjICgy6842I2L18zf5mbvOl5a1LXUHm3oqC5VKzfjSGRytLLh6q1wMdhqYsqIymxUFluN5PpMz5yj3Aglu2vb7ab2eLgPZkGaCZjvHeOueM43lcITdeLjMRsOP21z0a2Ogn9aGyJEfbYYpJrPdATCMBxUVH7nwpSYJTA_0BzZCXsPkFj5LeOLv1nxUsuq-8xq0bn5m3D4wVleomqSNoUoHm6SaLgDuxImKsZVNUFats-FCCk6VfKMpg&h=o97tLGiXeCocSHtiyJi9ZRoPH4KiXVXFvubhr6KaZBU Pragma: - no-cache Retry-After: @@ -1329,19 +1306,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - 49e49af06c84818e06d497c46a60c45b + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 72f30279-6a02-4608-8a3a-a0052dfc0374 + - 94a3e560-044f-4257-bc44-307a212a431d X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173721Z:72f30279-6a02-4608-8a3a-a0052dfc0374 + - WESTUS2:20241105T025903Z:94a3e560-044f-4257-bc44-307a212a431d X-Msedge-Ref: - - 'Ref A: E6AE4A6045644442B4AEDA768305D2A1 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:20Z' + - 'Ref A: 486173BC3D464879BE83EBAEC26B89D8 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:02Z' status: 202 Accepted code: 202 - duration: 1.4071455s - - id: 20 + duration: 1.3453409s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1360,10 +1339,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 49e49af06c84818e06d497c46a60c45b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLUFaRFRFU1Q6MkRXRTRBMEIyOjJEMTczMDc3NTQzMC05NEEzRTU2MDoyRDA0NEY6MkQ0MjU3OjJEQkM0NDoyRDMwN0EyMTJBNDMxRCIsImpvYkxvY2F0aW9uIjoiZWFzdHVzMiJ9?api-version=2021-04-01&t=638663723433866379&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=oyHNSrqjYMYDmXWBNIVzCCQ85zCRnhnPXNnSiBQnnRIj3pEbf9o2RQe6bkkOj0k6RC8pWAvMNHkNpeR0uNCNug5mv6wx1DWxjICgy6842I2L18zf5mbvOl5a1LXUHm3oqC5VKzfjSGRytLLh6q1wMdhqYsqIymxUFluN5PpMz5yj3Aglu2vb7ab2eLgPZkGaCZjvHeOueM43lcITdeLjMRsOP21z0a2Ogn9aGyJEfbYYpJrPdATCMBxUVH7nwpSYJTA_0BzZCXsPkFj5LeOLv1nxUsuq-8xq0bn5m3D4wVleomqSNoUoHm6SaLgDuxImKsZVNUFats-FCCk6VfKMpg&h=o97tLGiXeCocSHtiyJi9ZRoPH4KiXVXFvubhr6KaZBU method: GET response: proto: HTTP/2.0 @@ -1373,7 +1352,7 @@ interactions: trailer: {} content_length: 2554 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: '{"status":"Succeeded","properties":{"correlationId":"49e49af06c84818e06d497c46a60c45b","changes":[{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","changeType":"Modify","before":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","location":"eastus2","name":"rg-azdtest-we4a0b2","tags":{"azd-env-name":"azdtest-we4a0b2","BoolTag":"False","DeleteAfter":"2024-11-05T03:58:20Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"after":{"apiVersion":"2021-04-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","location":"eastus2","name":"rg-azdtest-we4a0b2","tags":{"azd-env-name":"azdtest-we4a0b2","BoolTag":"False","DeleteAfter":"2024-11-05T03:59:04Z","IntTag":"678","SecureObjectTag":"{}"},"type":"Microsoft.Resources/resourceGroups"},"delta":[{"path":"tags.DeleteAfter","propertyChangeType":"Modify","before":"2024-11-05T03:58:20Z","after":"2024-11-05T03:59:04Z"}]},{"resourceId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","changeType":"NoChange","before":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","kind":"StorageV2","location":"eastus2","name":"stezntqadabguyg","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-we4a0b2"},"type":"Microsoft.Storage/storageAccounts"},"after":{"apiVersion":"2022-05-01","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","kind":"StorageV2","location":"eastus2","name":"stezntqadabguyg","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-we4a0b2"},"type":"Microsoft.Storage/storageAccounts"},"delta":[]}]}}' headers: Cache-Control: - no-cache @@ -1382,7 +1361,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:36 GMT + - Tue, 05 Nov 2024 02:59:18 GMT Expires: - "-1" Pragma: @@ -1394,19 +1373,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - 49e49af06c84818e06d497c46a60c45b + 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 + - cf2cef0f-5a3e-4296-9bc5-2bd5ccc336d5 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173737Z:bb84f030-a899-44a6-bf71-e912d6b1d1a7 + - WESTUS2:20241105T025919Z:cf2cef0f-5a3e-4296-9bc5-2bd5ccc336d5 X-Msedge-Ref: - - 'Ref A: 8ACB4B51A6B445CC859A24084350BD68 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:36Z' + - 'Ref A: 1CFA6E2CC9764B33BFD266EC7575DACC Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:18Z' status: 200 OK code: 200 - duration: 689.8887ms - - id: 21 + duration: 667.2843ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1427,10 +1408,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 49e49af06c84818e06d497c46a60c45b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1440,7 +1421,7 @@ interactions: trailer: {} content_length: 396 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: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","name":"rg-azdtest-we4a0b2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","DeleteAfter":"2024-11-05T03:58:20Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1449,7 +1430,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:36 GMT + - Tue, 05 Nov 2024 02:59:18 GMT Expires: - "-1" Pragma: @@ -1461,19 +1442,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 23d7ec0d113aef563570d07e50641300 + - 49e49af06c84818e06d497c46a60c45b + 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 + - 57d9d113-d00c-4d39-9adc-ff6f32318235 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173737Z:d72c4f52-2626-4d0f-8b04-6a74fc21ae0a + - WESTUS2:20241105T025919Z:57d9d113-d00c-4d39-9adc-ff6f32318235 X-Msedge-Ref: - - 'Ref A: 86607345F1F049CEB4CA006F3E914907 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:37Z' + - 'Ref A: B8B9F710B4034E8A8AFEBFB7CB29FD5E Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:19Z' status: 200 OK code: 200 - duration: 67.2491ms - - id: 22 + duration: 82.7379ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1494,9 +1477,9 @@ 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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -1505,18 +1488,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:41 GMT + - Tue, 05 Nov 2024 02:59:25 GMT Expires: - "-1" Pragma: @@ -1528,19 +1511,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + 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 + - 1a519812-3b58-4d4d-9236-209b84800c1e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173742Z:2c7c1886-05d9-401c-966a-d505513288eb + - WESTUS2:20241105T025926Z:1a519812-3b58-4d4d-9236-209b84800c1e X-Msedge-Ref: - - 'Ref A: 704EAFC2F64744009022BBB1B8030764 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:39Z' + - 'Ref A: 8C8EF12905FB4B60A864C4568623F128 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:23Z' status: 200 OK code: 200 - duration: 3.1926516s - - id: 23 + duration: 3.3090427s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1561,9 +1546,9 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -1572,18 +1557,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955522 + content_length: 1857874 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","location":"eastus2","name":"azdtest-we4a0b2-1730775430","properties":{"correlationId":"bd55913a702ee1a152495fe15b327637","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","resourceName":"rg-azdtest-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT30.7679164S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}],"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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-11-05T03:58:20Z"},"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"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-11-05T02:58:53.9182969Z"},"tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "1955522" + - "1857874" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:47 GMT + - Tue, 05 Nov 2024 02:59:32 GMT Expires: - "-1" Pragma: @@ -1595,19 +1580,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + 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 + - a0150151-9e6e-4e99-8c49-e709717de1d0 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173748Z:27a79b41-1cb2-4f24-9d13-0887cc2a5906 + - WESTUS2:20241105T025933Z:a0150151-9e6e-4e99-8c49-e709717de1d0 X-Msedge-Ref: - - 'Ref A: 38EDF7575C9446F4ACF269FF595686BF Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:42Z' + - 'Ref A: 83AF07F94B8E4508A1DA1A830AF65A49 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:26Z' status: 200 OK code: 200 - duration: 5.7744864s - - id: 24 + duration: 7.3049257s + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1626,10 +1613,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 3fa36fd48d94247939aac3ad7807f63e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -1637,18 +1624,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + content_length: 1777031 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=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "1777031" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:51 GMT + - Tue, 05 Nov 2024 02:59:37 GMT Expires: - "-1" Pragma: @@ -1660,19 +1647,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 7faf5966-0bab-40c6-891f-99bbbdb921e4 + - 95e94aa6-64ac-4d83-8377-3e12a09f06c8 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173752Z:7faf5966-0bab-40c6-891f-99bbbdb921e4 + - WESTUS2:20241105T025938Z:95e94aa6-64ac-4d83-8377-3e12a09f06c8 X-Msedge-Ref: - - 'Ref A: 78BD9E5B683C4B8CB7A97ADC405EA4A0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:48Z' + - 'Ref A: 236E4B741864455296C2E369621D8C46 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:34Z' status: 200 OK code: 200 - duration: 3.7563167s - - id: 25 + duration: 4.4692733s + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1691,10 +1680,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 3fa36fd48d94247939aac3ad7807f63e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d method: GET response: proto: HTTP/2.0 @@ -1702,18 +1691,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 1218558 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=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "1218558" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:54 GMT + - Tue, 05 Nov 2024 02:59:41 GMT Expires: - "-1" Pragma: @@ -1725,19 +1714,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + 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 + - 620faf09-6421-491c-84b3-594541754555 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173755Z:facce564-8b22-4c28-979b-48e69109da89 + - WESTUS2:20241105T025942Z:620faf09-6421-491c-84b3-594541754555 X-Msedge-Ref: - - 'Ref A: 87E4418E5B0D4180B77579B199EC3F9C Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:52Z' + - 'Ref A: 60CB9625C1844DD78AAEAA2CA946C2BA Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:38Z' status: 200 OK code: 200 - duration: 2.866291s - - id: 26 + duration: 3.5835476s + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1756,10 +1747,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 3fa36fd48d94247939aac3ad7807f63e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d method: GET response: proto: HTTP/2.0 @@ -1767,18 +1758,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 151382 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "151382" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:37:57 GMT + - Tue, 05 Nov 2024 02:59:43 GMT Expires: - "-1" Pragma: @@ -1790,19 +1781,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 79fab70f-afb9-4026-abde-f69a08f63888 + - bfe33146-5dc3-43b8-8bb1-d961274ff390 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173758Z:79fab70f-afb9-4026-abde-f69a08f63888 + - WESTUS2:20241105T025943Z:bfe33146-5dc3-43b8-8bb1-d961274ff390 X-Msedge-Ref: - - 'Ref A: D442ABFF63434CD2BA6A7F04CE0A4C89 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:55Z' + - 'Ref A: 022EE1D4084540F98C39850801660729 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:42Z' status: 200 OK code: 200 - duration: 3.2977703s - - id: 27 + duration: 1.610133s + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1821,10 +1814,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 3fa36fd48d94247939aac3ad7807f63e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -1832,18 +1825,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:01 GMT + - Tue, 05 Nov 2024 02:59:43 GMT Expires: - "-1" Pragma: @@ -1855,19 +1848,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 929311c9-d9a3-40cc-9dd3-9e81be215d76 + - bcca65de-f2cf-45a7-9f06-7ea7b9a9b190 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173801Z:929311c9-d9a3-40cc-9dd3-9e81be215d76 + - WESTUS2:20241105T025944Z:bcca65de-f2cf-45a7-9f06-7ea7b9a9b190 X-Msedge-Ref: - - 'Ref A: 424E3EC705294B6381D0A2E9528C3C48 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:37:58Z' + - 'Ref A: BAFF521409534C3F90A48A3A181D31B4 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:44Z' status: 200 OK code: 200 - duration: 3.4398617s - - id: 28 + duration: 497.3052ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1886,10 +1881,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 3fa36fd48d94247939aac3ad7807f63e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -1897,18 +1892,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 12 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":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:03 GMT + - Tue, 05 Nov 2024 02:59:43 GMT Expires: - "-1" Pragma: @@ -1920,60 +1915,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - 3fa36fd48d94247939aac3ad7807f63e + 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 + - 0d3f0854-e193-4ed0-a11f-5dddd70740d1 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173803Z:ef49881e-2d0b-4967-a559-d3572f1c4169 + - WESTUS2:20241105T025944Z:0d3f0854-e193-4ed0-a11f-5dddd70740d1 X-Msedge-Ref: - - 'Ref A: 42590A172E1941D2BE28CD08773B1963 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:01Z' + - 'Ref A: 095B4E5CDA2D48F0B4B33197FD20FA22 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:44Z' status: 200 OK code: 200 - duration: 2.0179809s - - id: 29 + duration: 347.4581ms + - id: 28 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) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 - method: GET + - 3fa36fd48d94247939aac3ad7807f63e + 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: 555 + 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","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: - - "555" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:05 GMT + - Tue, 05 Nov 2024 02:59:44 GMT Expires: - "-1" Pragma: @@ -1985,19 +1988,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - 3fa36fd48d94247939aac3ad7807f63e + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 6e4420b9-823e-4cec-840b-dd7f88972689 + - 785f3e81-aef1-45ae-9b7f-fcff7f24c7d5 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173806Z:6e4420b9-823e-4cec-840b-dd7f88972689 + - WESTUS2:20241105T025944Z:785f3e81-aef1-45ae-9b7f-fcff7f24c7d5 X-Msedge-Ref: - - 'Ref A: 1392565601584087BDCFB211950F38F8 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:03Z' + - 'Ref A: 76634092D98C4C32843799B7C0AF7CE1 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:44Z' status: 200 OK code: 200 - duration: 2.235871s - - id: 30 + duration: 40.9373ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2011,15 +2014,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + 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 @@ -2027,18 +2032,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 35781 uncompressed: false - body: '{"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/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:07 GMT + - Tue, 05 Nov 2024 02:59:51 GMT Expires: - "-1" Pragma: @@ -2050,30 +2055,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 69b499ca-542a-475a-83bd-b9eedef9ae70 + - d045eeaf-f1e6-4f87-b614-75b0045e4f92 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173807Z:69b499ca-542a-475a-83bd-b9eedef9ae70 + - WESTUS2:20241105T025952Z:d045eeaf-f1e6-4f87-b614-75b0045e4f92 X-Msedge-Ref: - - 'Ref A: DAA777F6CA6B4DC1BCA406E9692EFC7D Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:06Z' + - 'Ref A: 857DEF8D186C415EB459AA36F4276B3B Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:49Z' status: 200 OK code: 200 - duration: 1.7820723s - - id: 31 + duration: 3.3358357s + - id: 30 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: @@ -2082,34 +2089,30 @@ interactions: - 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) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + 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: 4787 + content_length: 1857877 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=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","location":"eastus2","name":"azdtest-we4a0b2-1730775430","properties":{"correlationId":"bd55913a702ee1a152495fe15b327637","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","resourceName":"rg-azdtest-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT30.7679164S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}],"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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-11-05T03:58:20Z"},"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"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-11-05T02:58:53.9182969Z"},"tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"dda6db788e5162577771c8fe30a4263261c0710aba844669ad6bebd73ac3bfe3"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "1857877" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:07 GMT + - Tue, 05 Nov 2024 02:59:59 GMT Expires: - "-1" Pragma: @@ -2121,19 +2124,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b0eedab05a02ccb7a6dbc439a89a8fe5 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" X-Ms-Request-Id: - - 619e4088-f138-45fc-b957-9bc7a0a93593 + - 75892e53-a18e-437c-aee4-df11176f5aa2 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173808Z:619e4088-f138-45fc-b957-9bc7a0a93593 + - WESTUS2:20241105T030000Z:75892e53-a18e-437c-aee4-df11176f5aa2 X-Msedge-Ref: - - 'Ref A: 0BEFE22DB025429F8BDA6451B4023785 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:07Z' + - 'Ref A: 2307DAD1B07F43D8969FB6BF6FB64928 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:52Z' status: 200 OK code: 200 - duration: 66.3555ms - - id: 32 + duration: 7.695957s + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2147,17 +2152,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -2165,18 +2168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 1777031 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=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "1777031" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:11 GMT + - Tue, 05 Nov 2024 03:00:04 GMT Expires: - "-1" Pragma: @@ -2188,19 +2191,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 9ffc81da-5481-4780-88d1-d0e56ddb51d5 + - e8bc77fd-ce14-4965-af62-aabd6af648f0 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173812Z:9ffc81da-5481-4780-88d1-d0e56ddb51d5 + - WESTUS2:20241105T030005Z:e8bc77fd-ce14-4965-af62-aabd6af648f0 X-Msedge-Ref: - - 'Ref A: D01ABF363CB84F3894C7802C15B9625F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:10Z' + - 'Ref A: 2BF53B93537C4D2888DE7E43C0E1F8ED Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:00Z' status: 200 OK code: 200 - duration: 2.5303926s - - id: 33 + duration: 5.2362978s + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2214,17 +2219,15 @@ 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d method: GET response: proto: HTTP/2.0 @@ -2232,18 +2235,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955522 + content_length: 1218558 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1955522" + - "1218558" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:19 GMT + - Tue, 05 Nov 2024 03:00:08 GMT Expires: - "-1" Pragma: @@ -2255,19 +2258,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - "1099" X-Ms-Request-Id: - - bc8aeaba-c660-4ff4-8318-277408eefc3b + - d5216df6-1eac-4e23-a521-7db770ef3a3d X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173819Z:bc8aeaba-c660-4ff4-8318-277408eefc3b + - WESTUS2:20241105T030009Z:d5216df6-1eac-4e23-a521-7db770ef3a3d X-Msedge-Ref: - - 'Ref A: 08108926719B4ECEBDDDC792206F90DB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:12Z' + - 'Ref A: 0D4FAF29D0FF4873B139174D2EE033DF Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:05Z' status: 200 OK code: 200 - duration: 7.1503962s - - id: 34 + duration: 3.4649714s + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2286,10 +2291,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d method: GET response: proto: HTTP/2.0 @@ -2297,18 +2302,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + content_length: 151382 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "151382" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:22 GMT + - Tue, 05 Nov 2024 03:00:09 GMT Expires: - "-1" Pragma: @@ -2320,19 +2325,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - 00c391a4-ff0b-497b-adc7-f239a8496259 + - 0e1c4e6c-7d5c-49b2-b1fe-21a28f794b01 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173823Z:00c391a4-ff0b-497b-adc7-f239a8496259 + - WESTUS2:20241105T030010Z:0e1c4e6c-7d5c-49b2-b1fe-21a28f794b01 X-Msedge-Ref: - - 'Ref A: 77CEC2C1F1C1443186E1FD1D80F4812B Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:20Z' + - 'Ref A: C492E252A9284043B87917DDC27548A9 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:09Z' status: 200 OK code: 200 - duration: 3.6457143s - - id: 35 + duration: 1.4137707s + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2351,10 +2358,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -2362,18 +2369,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:25 GMT + - Tue, 05 Nov 2024 03:00:10 GMT Expires: - "-1" Pragma: @@ -2385,19 +2392,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1098" X-Ms-Request-Id: - - c0f73ee2-efd7-40e2-8234-042787edb791 + - 9a5d8548-ce1b-4f0c-bc98-359657406d68 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173826Z:c0f73ee2-efd7-40e2-8234-042787edb791 + - WESTUS2:20241105T030011Z:9a5d8548-ce1b-4f0c-bc98-359657406d68 X-Msedge-Ref: - - 'Ref A: 3B4E6EFA3A124B838D65D3F5178838DF Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:23Z' + - 'Ref A: F152071D67334B8E926EC2CD16DD3EEA Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:10Z' status: 200 OK code: 200 - duration: 3.0255135s - - id: 36 + duration: 420.5987ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2416,10 +2425,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -2427,18 +2436,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 12 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" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:32 GMT + - Tue, 05 Nov 2024 03:00:10 GMT Expires: - "-1" Pragma: @@ -2450,60 +2459,68 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - fe69eba2-fa9f-4cbd-ab35-932797a1beb2 + - 5a06970a-6ab8-45cd-81d8-231b10c1cf74 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173833Z:fe69eba2-fa9f-4cbd-ab35-932797a1beb2 + - WESTUS2:20241105T030011Z:5a06970a-6ab8-45cd-81d8-231b10c1cf74 X-Msedge-Ref: - - 'Ref A: DC8B4FE9AE744F27BE5EC88DB24B3EC5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:26Z' + - 'Ref A: BF34EF90E7984D1BB8C7AA8F4063AC71 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:11Z' status: 200 OK code: 200 - duration: 6.8578042s - - id: 37 + duration: 432.1341ms + - id: 36 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) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + 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: 623057 + 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=vZLbaoNAEIafJXudgOZQSu5Wd6VNM7Nx3TGYu2DToAaF1uAh5N0bay30cN2rZXY%2bBr7558LiIi%2bT%2fLwvkyI3RXbI39jywiQPDAVTtszPp9OYbWVgJGm1kcNPDwwVKm0eBuDC8kNdbvavZdINfTo0bMns0f0ITVRDG03Y%2bIPQRTX07MV0pDPPAXGsfNoJIH%2bOwnG0OAnfCj0gaaFxhG9CF83zi7ZRrQOrUoJuXGyjoRmIzFLi2ELLa%2bXajkpXkkTRaCnvINMYSL97paadE1JN1N56nt90HKS8QcEXYDwCwytl5FyZxzl6xYRdxyzYSiHRlWg0X3f7%2bX9DEdeQRlMwRxtbWEDy29An%2bsuw%2fm64%2bjSEFtO4gbA37BL%2bETgFsyFfT%2fOb%2fZd%2ffxQuRy54dwg9dr2%2bAw%3d%3d","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: - - "623057" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:36 GMT + - Tue, 05 Nov 2024 03:00:10 GMT Expires: - "-1" Pragma: @@ -2515,60 +2532,66 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11991" + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 7301b945-b4ba-4890-907d-c8e915f0c34e + - 8fea74ab-0609-4d1b-8a82-cf361dff0a94 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173837Z:7301b945-b4ba-4890-907d-c8e915f0c34e + - WESTUS2:20241105T030011Z:8fea74ab-0609-4d1b-8a82-cf361dff0a94 X-Msedge-Ref: - - 'Ref A: 2A18B4B7ACA24CDF9F88E00C343451C9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:33Z' + - 'Ref A: 30277DA5B7BC4556BDC9C3BFF686EFFE Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:11Z' status: 200 OK code: 200 - duration: 3.5385875s - - id: 38 + duration: 54.7449ms + - id: 37 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-we4a0b2"},"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-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"}}' 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) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + 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=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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:00:12Z"},"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":"ddddae43a244790aaf6a77fef08106ab","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "1960" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:38 GMT + - Tue, 05 Nov 2024 03:00:12 GMT Expires: - "-1" Pragma: @@ -2580,60 +2603,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11994" + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - e206f0dd-e165-4c5a-b411-f1eacf801b72 + - f1fcd1b4-addb-4a7b-9581-70bbc198b574 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173839Z:e206f0dd-e165-4c5a-b411-f1eacf801b72 + - WESTUS2:20241105T030013Z:f1fcd1b4-addb-4a7b-9581-70bbc198b574 X-Msedge-Ref: - - 'Ref A: 061193CB7C8D47F6A05ADF476210BB94 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:37Z' + - 'Ref A: C348EA6647BD4EA78B76441FA71F21E2 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:11Z' status: 200 OK code: 200 - duration: 2.2507896s - - id: 39 + duration: 1.866289s + - id: 38 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-we4a0b2"},"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-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"}}' 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) + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + 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=bZBba8JAEIV%2fi%2fuskGgsJW%2bbzIRe3F2zOxPRN7FWNJJAG8lF%2fO81FUspfRrOfB8cOGexKYtqX5zW1b4sqMy3xacIz8ItEFDHqMnKWf8otk01X39U%2b9573bYiFP7gcaBp2ahuORLDb8OW9Z350%2fHA5kmkYFenvALFaaAhiiwcIfWyRDF6miJIKYs1vb1bX5uZ82oDfPU2viaeKMg9A7tOdbIxsR%2bZwwsylK1FfFC51Q7T%2fqLlVZRxw9xdWZK2vacOstUgp4oSViRrQxgYeg50Uo7EZSi0sfSEbM0cRVicjsehQOmI3fgeF%2bjoP%2bE3%2f6Ozm9xpYuV1v58Fbw2x1BJk33PTLpcv","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:00:13Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:00:16.4769062Z","duration":"PT0.0007067S","correlationId":"ddddae43a244790aaf6a77fef08106ab","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2-1730775430/operationStatuses/08584708312713914490?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "555" + - "1555" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:39 GMT + - Tue, 05 Nov 2024 03:00:15 GMT Expires: - "-1" Pragma: @@ -2645,19 +2678,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 74888224-7b21-4a16-abc2-4388d33e322b + - bc960c7f-ee2b-4ad9-bba9-a983bd3479b5 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173840Z:74888224-7b21-4a16-abc2-4388d33e322b + - WESTUS2:20241105T030016Z:bc960c7f-ee2b-4ad9-bba9-a983bd3479b5 X-Msedge-Ref: - - 'Ref A: F1D1963648C3430EA291ACF4891E7EB0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:39Z' + - 'Ref A: 858E357957BC4AF9AD2D4568FFCE03D7 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:13Z' status: 200 OK code: 200 - duration: 765.3133ms - - id: 40 + duration: 3.2307109s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2676,10 +2713,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/operationStatuses/08584708312713914490?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2687,18 +2724,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 12 + content_length: 22 uncompressed: false - body: '{"value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "12" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:41 GMT + - Tue, 05 Nov 2024 03:00:46 GMT Expires: - "-1" Pragma: @@ -2710,66 +2747,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - e5bc4e9e-2af3-46d7-bc65-c66982769951 + - a2a85f51-b6be-4120-8f6d-e7bee2652845 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173842Z:e5bc4e9e-2af3-46d7-bc65-c66982769951 + - WESTUS2:20241105T030047Z:a2a85f51-b6be-4120-8f6d-e7bee2652845 X-Msedge-Ref: - - 'Ref A: 8C2066682A93442DA92B2F197F694FCE Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:40Z' + - 'Ref A: 8BA20BF67A31486380806B03D9FF4FA6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:47Z' status: 200 OK code: 200 - duration: 1.6800196s - - id: 41 + duration: 181.3033ms + - 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.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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?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: 2481 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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:00:13Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:00:22.098978Z","duration":"PT5.6227785S","correlationId":"ddddae43a244790aaf6a77fef08106ab","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "2481" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:38:41 GMT + - Tue, 05 Nov 2024 03:00:46 GMT Expires: - "-1" Pragma: @@ -2781,224 +2814,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1098" X-Ms-Request-Id: - - 6a7c47fd-86a1-4f9d-bcc9-65825f784825 + - b4d85477-823f-4726-b974-e3049025a80a X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173842Z:6a7c47fd-86a1-4f9d-bcc9-65825f784825 + - WESTUS2:20241105T030047Z:b4d85477-823f-4726-b974-e3049025a80a X-Msedge-Ref: - - 'Ref A: 1EEE5A4E60E64D88AD71A03CD2A12FC8 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:38:42Z' + - 'Ref A: CF7061EE9F5045AD9D91257207EB70DE Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:47Z' 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 + duration: 179.9736ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3019,10 +2849,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - ddddae43a244790aaf6a77fef08106ab + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3032,7 +2862,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:38:42Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","name":"rg-azdtest-we4a0b2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","DeleteAfter":"2024-11-05T04:00:13Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3041,7 +2871,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:16 GMT + - Tue, 05 Nov 2024 03:00:46 GMT Expires: - "-1" Pragma: @@ -3053,19 +2883,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4e5cc43ee1d71e8ce8f4b6404355d970 + - ddddae43a244790aaf6a77fef08106ab + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11990" + - "1099" X-Ms-Request-Id: - - 56bd33ff-8d41-4eb9-ad61-96325866922e + - 5f838954-0bc4-47c2-a37d-55df5ef1d749 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173917Z:56bd33ff-8d41-4eb9-ad61-96325866922e + - WESTUS2:20241105T030047Z:5f838954-0bc4-47c2-a37d-55df5ef1d749 X-Msedge-Ref: - - 'Ref A: 359896BA227F4FF2B345D43848AC41D5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:17Z' + - 'Ref A: C578B9ECBE2447E2BCDEA9246F5FEE19 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:47Z' status: 200 OK code: 200 - duration: 75.3649ms - - id: 46 + duration: 67.1415ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3086,9 +2918,9 @@ 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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -3097,18 +2929,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:21 GMT + - Tue, 05 Nov 2024 03:00:54 GMT Expires: - "-1" Pragma: @@ -3120,19 +2952,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 2b2f11bc-8c49-4dec-b73c-f1ce7a195f4f + - b106a2a7-bbd1-4bc4-9db6-8fdf3d287703 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173922Z:2b2f11bc-8c49-4dec-b73c-f1ce7a195f4f + - WESTUS2:20241105T030055Z:b106a2a7-bbd1-4bc4-9db6-8fdf3d287703 X-Msedge-Ref: - - 'Ref A: 199D53A4C7AF4D96BD1D7CF3D0F641F2 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:19Z' + - 'Ref A: B2E84DB939AA4D2E87D63F2BF751C7B6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:51Z' status: 200 OK code: 200 - duration: 2.5573106s - - id: 47 + duration: 3.3663642s + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -3153,9 +2987,9 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -3164,148 +2998,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955523 - 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"}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1955523" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:39:27 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" - X-Ms-Request-Id: - - 434eefec-aa01-46dd-ab77-454183747768 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173928Z:434eefec-aa01-46dd-ab77-454183747768 - X-Msedge-Ref: - - 'Ref A: 8D76BBB9787E431EBD25D294C3C2E244 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:22Z' - status: 200 OK - code: 200 - duration: 6.0580807s - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-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: - - 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 - 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:39:30 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" - X-Ms-Request-Id: - - bed83375-c564-40e7-80ab-ddd1adcf7cbf - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173931Z:bed83375-c564-40e7-80ab-ddd1adcf7cbf - X-Msedge-Ref: - - 'Ref A: 269172B5F09C4A868C960BA0AA1D3CD5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:28Z' - status: 200 OK - code: 200 - duration: 3.3341401s - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.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 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 414870 + content_length: 1861061 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=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","location":"eastus2","name":"azdtest-we4a0b2-1730775430","properties":{"correlationId":"ddddae43a244790aaf6a77fef08106ab","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","resourceName":"rg-azdtest-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5.6227785S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}],"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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-11-05T04:00:13Z"},"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"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-11-05T03:00:22.098978Z"},"tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "1861061" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:33 GMT + - Tue, 05 Nov 2024 03:01:00 GMT Expires: - "-1" Pragma: @@ -3317,19 +3021,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + 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 + - 5e052019-e3f7-4eb6-b1fb-4d61db9aade4 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173934Z:044f5021-4acd-413e-98e7-ce556e4daea9 + - WESTUS2:20241105T030101Z:5e052019-e3f7-4eb6-b1fb-4d61db9aade4 X-Msedge-Ref: - - 'Ref A: 703CAC20356541B184BE7A67F8BBB811 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:31Z' + - 'Ref A: 517D3228E2F24889A3E932D949A09016 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:55Z' status: 200 OK code: 200 - duration: 2.9185611s - - id: 50 + duration: 6.0049264s + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -3348,10 +3054,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b88ac7f1f01ef461ede8f8159cbf2a6c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -3359,18 +3065,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 1777031 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=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "1777031" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:36 GMT + - Tue, 05 Nov 2024 03:01:05 GMT Expires: - "-1" Pragma: @@ -3382,19 +3088,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + 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 + - 0555a8c0-df5d-428f-a7ec-172443c4a4c9 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173937Z:380ddeb8-9781-43a8-b242-710821b8f7e5 + - WESTUS2:20241105T030106Z:0555a8c0-df5d-428f-a7ec-172443c4a4c9 X-Msedge-Ref: - - 'Ref A: 78799A785A3B40A295F73C769244420A Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:34Z' + - 'Ref A: 25DA92CCBC2C415980EABA7ECC118B94 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:01Z' status: 200 OK code: 200 - duration: 3.1061502s - - id: 51 + duration: 5.1005733s + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -3413,10 +3121,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b88ac7f1f01ef461ede8f8159cbf2a6c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d method: GET response: proto: HTTP/2.0 @@ -3424,18 +3132,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 1218558 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=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "1218558" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:41 GMT + - Tue, 05 Nov 2024 03:01:09 GMT Expires: - "-1" Pragma: @@ -3447,19 +3155,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + 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 + - 5b4e524c-bfb6-4324-9de2-a85f8fc14c44 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173942Z:584f9024-e474-4b99-a56b-6a48e9bc4f84 + - WESTUS2:20241105T030110Z:5b4e524c-bfb6-4324-9de2-a85f8fc14c44 X-Msedge-Ref: - - 'Ref A: 98E4AE2FECE341E984BC69ED5A7F7746 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:37Z' + - 'Ref A: 8716E233FE044EF7B812213EB999F2F6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:06Z' status: 200 OK code: 200 - duration: 4.7785792s - - id: 52 + duration: 3.5503132s + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -3478,10 +3188,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b88ac7f1f01ef461ede8f8159cbf2a6c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d method: GET response: proto: HTTP/2.0 @@ -3489,18 +3199,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 151382 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "151382" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:43 GMT + - Tue, 05 Nov 2024 03:01:10 GMT Expires: - "-1" Pragma: @@ -3512,19 +3222,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + 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 + - c4a72da8-763d-45fe-82f9-baf82b32ee17 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173944Z:e567036d-e0a2-4538-8194-dd8784ffcb03 + - WESTUS2:20241105T030111Z:c4a72da8-763d-45fe-82f9-baf82b32ee17 X-Msedge-Ref: - - 'Ref A: CB7452AD06744939818A8D84C3ABA392 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:42Z' + - 'Ref A: 24AED66FDED049B98ECF7F10AC527905 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:10Z' status: 200 OK code: 200 - duration: 1.6673708s - - id: 53 + duration: 1.494934s + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3543,10 +3255,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b88ac7f1f01ef461ede8f8159cbf2a6c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -3554,18 +3266,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "555" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:44 GMT + - Tue, 05 Nov 2024 03:01:11 GMT Expires: - "-1" Pragma: @@ -3577,19 +3289,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + 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 + - 36e2b4b6-e193-4ecd-8905-e79dcbb724cf X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173945Z:22b61d39-15e4-4b46-a70d-9c38c233211a + - WESTUS2:20241105T030112Z:36e2b4b6-e193-4ecd-8905-e79dcbb724cf X-Msedge-Ref: - - 'Ref A: 2FD09AD5227B49698BFD728A487D7C46 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:44Z' + - 'Ref A: EBFCFC771EEC4308A8DAE65A33C1529A Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:11Z' status: 200 OK code: 200 - duration: 846.5785ms - - id: 54 + duration: 1.0338317s + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3608,10 +3322,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b88ac7f1f01ef461ede8f8159cbf2a6c + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -3630,7 +3344,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:44 GMT + - Tue, 05 Nov 2024 03:01:12 GMT Expires: - "-1" Pragma: @@ -3642,19 +3356,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c + 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 + - 6aa5f14e-7d51-4347-ac1b-ae311c8c07a9 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173945Z:ec826900-d6e3-4d3a-937a-81e8beec91d7 + - WESTUS2:20241105T030113Z:6aa5f14e-7d51-4347-ac1b-ae311c8c07a9 X-Msedge-Ref: - - 'Ref A: 29DC70174B9347428E146AEFEE71C53D Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:45Z' + - 'Ref A: A77CDCD9EA7E4193820F2B5D461CCF72 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:12Z' status: 200 OK code: 200 - duration: 662.7109ms - - id: 55 + duration: 454.2208ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3679,9 +3395,9 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -3701,7 +3417,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:45 GMT + - Tue, 05 Nov 2024 03:01:12 GMT Expires: - "-1" Pragma: @@ -3713,19 +3429,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 71b4929d543702b90f71af0512580f01 + - b88ac7f1f01ef461ede8f8159cbf2a6c X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - e0608264-ee7b-491c-8dfb-0d90d8f8a9a7 + - b30e3ac3-49bd-4127-8c97-f50dfabf6382 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173945Z:e0608264-ee7b-491c-8dfb-0d90d8f8a9a7 + - WESTUS2:20241105T030113Z:b30e3ac3-49bd-4127-8c97-f50dfabf6382 X-Msedge-Ref: - - 'Ref A: 51388CC1FD1840B68E12A16D4765A5E9 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:45Z' + - 'Ref A: 9D2F68910DB242E9AACE79BF3A97798F Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:13Z' status: 200 OK code: 200 - duration: 48.2921ms - - id: 56 + duration: 46.6396ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3746,9 +3462,9 @@ 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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d + - 547c15cd8d8950690bbca0a601f1094a url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -3757,18 +3473,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:50 GMT + - Tue, 05 Nov 2024 03:01:19 GMT Expires: - "-1" Pragma: @@ -3780,19 +3496,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d + - 547c15cd8d8950690bbca0a601f1094a + 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 + - 1bf0f0d7-3f87-498e-be30-7635e9c96f1d X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173951Z:b4f567b0-cd81-4c7b-82d7-7273132b7ca6 + - WESTUS2:20241105T030120Z:1bf0f0d7-3f87-498e-be30-7635e9c96f1d X-Msedge-Ref: - - 'Ref A: 6B1F3AFC371D4E9482CE70E77057D970 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:48Z' + - 'Ref A: 0223CD7C1414408EBAFEA8DB832675D2 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:17Z' status: 200 OK code: 200 - duration: 2.9566648s - - id: 57 + duration: 2.6727058s + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3803,7 +3521,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":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: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"boolTagValue":{"value":false},"environmentName":{"value":"azdtest-we4a0b2"},"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-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"}}' form: {} headers: Accept: @@ -3817,31 +3535,29 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 547c15cd8d8950690bbca0a601f1094a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/validate?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: 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":"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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:20Z"},"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":"547c15cd8d8950690bbca0a601f1094a","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' 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" + - "1960" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:39:54 GMT + - Tue, 05 Nov 2024 03:01:21 GMT Expires: - "-1" Pragma: @@ -3853,127 +3569,70 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - X-Ms-Deployment-Engine-Version: - - 1.109.0 + - 547c15cd8d8950690bbca0a601f1094a + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 26388dc6-218d-4969-899b-33e89f510435 + - 5a5633f5-3b83-4193-9d4f-fc2b7e02de3e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T173955Z:26388dc6-218d-4969-899b-33e89f510435 + - WESTUS2:20241105T030122Z:5a5633f5-3b83-4193-9d4f-fc2b7e02de3e X-Msedge-Ref: - - 'Ref A: 257E000E1698422A9F9BD5334D1B4C7A Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:39:51Z' + - 'Ref A: 7E446DAA4D7C49698572BCB515DF8236 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:20Z' status: 200 OK code: 200 - duration: 4.3567755s - - id: 58 + duration: 2.066501s + - id: 52 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-we4a0b2"},"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-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"}}' 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: - - 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 - 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" + - "4684" Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 19 Sep 2024 17:40: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: - - 52d37223567d2186b2d140a95853a28d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" - X-Ms-Request-Id: - - d7f2bcfe-5b63-4c54-83a6-bf99ecdf58f6 - X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174026Z:d7f2bcfe-5b63-4c54-83a6-bf99ecdf58f6 - X-Msedge-Ref: - - 'Ref A: F4C4B7BF3A2E46D098E77F521CA8190F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:26Z' - status: 200 OK - code: 200 - duration: 555.8339ms - - id: 59 - 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 + - 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 547c15cd8d8950690bbca0a601f1094a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2483 + 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: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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:23Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:01:25.8980435Z","duration":"PT0.0004155S","correlationId":"547c15cd8d8950690bbca0a601f1094a","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2-1730775430/operationStatuses/08584708312022471543?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "2483" + - "1555" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:26 GMT + - Tue, 05 Nov 2024 03:01:25 GMT Expires: - "-1" Pragma: @@ -3985,19 +3644,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - 547c15cd8d8950690bbca0a601f1094a + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 3ecb5216-bdd9-4ef9-a3b2-b8afe0e6be59 + - 2104e0cc-223d-4a32-9dc9-ffa0d9771751 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174027Z:3ecb5216-bdd9-4ef9-a3b2-b8afe0e6be59 + - WESTUS2:20241105T030126Z:2104e0cc-223d-4a32-9dc9-ffa0d9771751 X-Msedge-Ref: - - 'Ref A: BBAF38DDDCAC47D9AE83264A53CBE03D Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:26Z' + - 'Ref A: B200C3B3DEB14A61AE3F0662E0E7AB37 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:22Z' status: 200 OK code: 200 - duration: 454.9592ms - - id: 60 + duration: 3.6493312s + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -4011,17 +3674,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 547c15cd8d8950690bbca0a601f1094a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/operationStatuses/08584708312022471543?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4029,18 +3690,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 22 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: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "397" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:26 GMT + - Tue, 05 Nov 2024 03:01:56 GMT Expires: - "-1" Pragma: @@ -4052,19 +3713,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 52d37223567d2186b2d140a95853a28d + - 547c15cd8d8950690bbca0a601f1094a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11993" + - "1099" X-Ms-Request-Id: - - 32a9db12-b5dd-4164-b60c-4f0723a36f16 + - 7f4f991e-49a0-4754-9f0e-c9c60b2524be X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174027Z:32a9db12-b5dd-4164-b60c-4f0723a36f16 + - WESTUS2:20241105T030156Z:7f4f991e-49a0-4754-9f0e-c9c60b2524be X-Msedge-Ref: - - 'Ref A: 967E9345A27E49708B2D93394B77B3CB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:27Z' + - 'Ref A: FF79B907A1A14F4292A0142FA9F28D9A Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:56Z' status: 200 OK code: 200 - duration: 77.0346ms - - id: 61 + duration: 212.9393ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -4078,17 +3741,15 @@ 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 547c15cd8d8950690bbca0a601f1094a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4096,18 +3757,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1955523 + 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=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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:23Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:01:30.4733043Z","duration":"PT4.5756763S","correlationId":"547c15cd8d8950690bbca0a601f1094a","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1955523" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:34 GMT + - Tue, 05 Nov 2024 03:01:57 GMT Expires: - "-1" Pragma: @@ -4119,19 +3780,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 547c15cd8d8950690bbca0a601f1094a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11995" + - "1099" X-Ms-Request-Id: - - 54c5cf77-597e-4aee-8361-5970d53dd9db + - d221de4f-7129-451c-93f2-bf2d5bc349b6 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174035Z:54c5cf77-597e-4aee-8361-5970d53dd9db + - WESTUS2:20241105T030157Z:d221de4f-7129-451c-93f2-bf2d5bc349b6 X-Msedge-Ref: - - 'Ref A: AAC92201146541F8A5BA6212A9866196 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:29Z' + - 'Ref A: DB8072CC833A4BBAB934FEB82390CF7B Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:56Z' status: 200 OK code: 200 - duration: 5.6631207s - - id: 62 + duration: 207.1526ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4145,15 +3808,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 547c15cd8d8950690bbca0a601f1094a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4161,18 +3826,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282536 + 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=vZJRb4IwFIV%2fi33WhAosi2%2bFlmzO29rSsuibYc4ABpINA9T431dmfNyLJnvqzb2nybn3O2eUN3Vb1KddWzS1bqp9%2fY0WZ8RIqk06H8t637fr3VdbjIq3%2fYAWCE%2beJ1xverCbGZr%2bKlTT3WbYCyaqSiKgh06aLQUjA06jSNEjlV6WgGEe1xGVOou5%2fvhUmItV6nWCGqfLMVhigcpAUBlCWWGRYp5SEoBuBkWZD%2bXGzcEXupqhyxS9s1Qzo8Sa3Wc3nD9k11nunaU56APmFkIocCTKJTPU2WXsCSrFpTHjy5TZRpnpjbFulsh%2b1EFJBk5JCHppQJNOaLC8zAfImt%2f1rijuW%2b2fSXCh9MsjKIKHkzPnVnZQ5i45ZoD0TxRcZocRiTv5mKpX90e60zMvo8QHWnlQshDscndLmEl9tKhPx%2bMUJYrwmMWMa0VWt2ZMOKFkhHXtXC4%2f","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","name":"rg-azdtest-we4a0b2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","DeleteAfter":"2024-11-05T04:01:23Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "282536" + - "397" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:38 GMT + - Tue, 05 Nov 2024 03:01:57 GMT Expires: - "-1" Pragma: @@ -4184,19 +3849,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 547c15cd8d8950690bbca0a601f1094a + 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 + - 84687f99-3a07-4007-a810-3a31929c446a X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174039Z:a1a91796-2f82-45cd-b64a-5aec2964d65e + - WESTUS2:20241105T030157Z:84687f99-3a07-4007-a810-3a31929c446a X-Msedge-Ref: - - 'Ref A: DEF7B6A0EA6740A0BB70B7791FB41E33 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:35Z' + - 'Ref A: 678947E900804E11A69FF3A60695361E Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:57Z' status: 200 OK code: 200 - duration: 3.591993s - - id: 63 + duration: 57.765ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -4210,15 +3877,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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + 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 @@ -4226,18 +3895,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414870 + content_length: 1853684 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=pZFPb4JAEMU%2fi3vWZBFsqjdxl8TK7MIyQ6M3o1YFA0mL4Y%2fhuxfaeuix9jTz8t4kv5m5sV2eFefsui3OeYZ5esg%2b2OzGXmWEFI3ZLLteLkMm5z%2fyxrJDVQTb9%2bLcD6wONZsxa%2fA8ULiuoFmP2PArYfLy7lljZ2BSzwVxLEPaCKDQUcJ1jbiIkMcekOQKXRFivFC4fzOW0n7ESy2oy%2b0qhXNbo2yUAAeEtKG2yMSKdPIiYwlPkBqX%2bElGPK8g6XVYqQZKEKmjkWrW3vn7xf6Oz%2f%2bN76iEGsB0Ao2c6IWlIun51Cx%2foXboVY%2b6kArN3Kfofvv%2bFZKMDuRj%2fA5%2f%2fPy4tDTCBATZkKw5JEdbR9YqJOUTn%2brvF0wlNnltPHcTy1OASddLK8B0H%2fR%2bl3X7CsmuVsfRiLVt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430","location":"eastus2","name":"azdtest-we4a0b2-1730775430","properties":{"correlationId":"547c15cd8d8950690bbca0a601f1094a","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2","resourceName":"rg-azdtest-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT4.5756763S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}],"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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-11-05T04:01:23Z"},"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"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-11-05T03:01:30.4733043Z"},"tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "414870" + - "1853684" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:40 GMT + - Tue, 05 Nov 2024 03:02:08 GMT Expires: - "-1" Pragma: @@ -4249,19 +3918,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - 5eec1c5b-0446-4022-aaca-5e4636b5d478 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174041Z:b011369b-0259-4003-b7b9-aac66cf28602 + - WESTUS2:20241105T030208Z:5eec1c5b-0446-4022-aaca-5e4636b5d478 X-Msedge-Ref: - - 'Ref A: 19E7B879435C4C128DEC7386C2EF6188 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:39Z' + - 'Ref A: FEB36707914744FBB7F2E1C78938178E Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:01Z' status: 200 OK code: 200 - duration: 2.604763s - - id: 64 + duration: 7.4464147s + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -4280,10 +3951,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFPb4JAEMU%2fi3vWZBFsqjdxl8TK7MIyQ6M3o1YFA0mL4Y%2fhuxfaeuix9jTz8t4kv5m5sV2eFefsui3OeYZ5esg%2b2OzGXmWEFI3ZLLteLkMm5z%2fyxrJDVQTb9%2bLcD6wONZsxa%2fA8ULiuoFmP2PArYfLy7lljZ2BSzwVxLEPaCKDQUcJ1jbiIkMcekOQKXRFivFC4fzOW0n7ESy2oy%2b0qhXNbo2yUAAeEtKG2yMSKdPIiYwlPkBqX%2bElGPK8g6XVYqQZKEKmjkWrW3vn7xf6Oz%2f%2bN76iEGsB0Ao2c6IWlIun51Cx%2foXboVY%2b6kArN3Kfofvv%2bFZKMDuRj%2fA5%2f%2fPy4tDTCBATZkKw5JEdbR9YqJOUTn%2brvF0wlNnltPHcTy1OASddLK8B0H%2fR%2bl3X7CsmuVsfRiLVt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -4291,18 +3962,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400530 + content_length: 1788297 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=xZHLboMwEEW%2fJV6DxCtSxQ5iR22TsbE9TpXuIkojAjJSS0RIxL83lLDpD3Q3996zONLcSN7YtrTnQ1s2FpuqsN8kvhGWaDQ6GE9bXNrs8NWWI7EpehITf%2fG04Li%2fwHXvEueXUE03b74XLVS1ToEeO2neKRgZcZqmitZUers1GOZxTKnE3Yrjx6fyudhqrxPU3Lm8B0wCjiyAK4sEZSFon2u2zMTplQHmvUDTAYVASNclg%2fNw%2fTdVQXOf0ySC00sE%2fV9VuRRYhfw4qb4xjcwokTES23NdO2RsjA7naDZaGHye47Te3zDBK8ZRJVujp2IYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "400530" + - "1788297" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:44 GMT + - Tue, 05 Nov 2024 03:02:13 GMT Expires: - "-1" Pragma: @@ -4314,19 +3985,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - ea2639d3-c159-4004-bc51-8f218d434be3 + - 4988a655-78d2-4b8f-b2d4-65a8ba3a5ebe X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174045Z:ea2639d3-c159-4004-bc51-8f218d434be3 + - WESTUS2:20241105T030213Z:4988a655-78d2-4b8f-b2d4-65a8ba3a5ebe X-Msedge-Ref: - - 'Ref A: D55BD123A40847C4A7E2B43723524A51 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:41Z' + - 'Ref A: 6D115E8E0E634629B1431F8536BC63A3 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:09Z' status: 200 OK code: 200 - duration: 3.4778358s - - id: 65 + duration: 4.8435948s + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -4345,10 +4018,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHLboMwEEW%2fJV6DxCtSxQ5iR22TsbE9TpXuIkojAjJSS0RIxL83lLDpD3Q3996zONLcSN7YtrTnQ1s2FpuqsN8kvhGWaDQ6GE9bXNrs8NWWI7EpehITf%2fG04Li%2fwHXvEueXUE03b74XLVS1ToEeO2neKRgZcZqmitZUers1GOZxTKnE3Yrjx6fyudhqrxPU3Lm8B0wCjiyAK4sEZSFon2u2zMTplQHmvUDTAYVASNclg%2fNw%2fTdVQXOf0ySC00sE%2fV9VuRRYhfw4qb4xjcwokTES23NdO2RsjA7naDZaGHye47Te3zDBK8ZRJVujp2IYfgA%3d method: GET response: proto: HTTP/2.0 @@ -4356,18 +4029,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 623057 + content_length: 1210707 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=xZJdb8IgFIZ%2fi1xrUmpdjHdtodmmB4SCi96Zzhlb0yazprTG%2fz7wIy673C52BYfzQp7zhBPKqrLelcd1vatKVRWb8oAmJ0TDVOnUd9tyY%2br5%2brPeucR006IJwr1xj6mlgW45QP1LQlbNvYe9cU8WSQRk2wi9IqBFwEgUSbInwlskoKnHVESEWsRMvX9IzPgs9RpOtM1lLSMaQ174jFAMSrcsxixNopXQB8O6qpWEDm3fMEUxJ9sBOvdvvP%2bF64PaBtBlrRVibrgCVGZ4%2fkrt2nKLCmTpgxhccOOQhSR0ktGkPO73ffRGnfBfDhD8xbf1GAYs1x2oYgQdHXHnmyYz3b08QSGsc2iAFAHkYJxrhxpTpmQ4c8QPfqoln9PvJzod3ks9TblWz%2ffyOq%2f9YNfrP947n78A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "623057" + - "1210707" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:48 GMT + - Tue, 05 Nov 2024 03:02:17 GMT Expires: - "-1" Pragma: @@ -4379,19 +4052,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11996" + - "1099" X-Ms-Request-Id: - - d9697262-6c3b-4dba-920c-89fcaceb8ead + - 3683c26c-e757-49c8-a4e7-527bb378a9a2 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174049Z:d9697262-6c3b-4dba-920c-89fcaceb8ead + - WESTUS2:20241105T030217Z:3683c26c-e757-49c8-a4e7-527bb378a9a2 X-Msedge-Ref: - - 'Ref A: 8D2E3BAD5CBB41539AB0A363264D55FB Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:45Z' + - 'Ref A: 98B48D70841D49BC9D5A18F252B094E3 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:14Z' status: 200 OK code: 200 - duration: 4.018676s - - id: 66 + duration: 3.8598119s + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -4410,10 +4085,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJdb8IgFIZ%2fi1xrUmpdjHdtodmmB4SCi96Zzhlb0yazprTG%2fz7wIy673C52BYfzQp7zhBPKqrLelcd1vatKVRWb8oAmJ0TDVOnUd9tyY%2br5%2brPeucR006IJwr1xj6mlgW45QP1LQlbNvYe9cU8WSQRk2wi9IqBFwEgUSbInwlskoKnHVESEWsRMvX9IzPgs9RpOtM1lLSMaQ174jFAMSrcsxixNopXQB8O6qpWEDm3fMEUxJ9sBOvdvvP%2bF64PaBtBlrRVibrgCVGZ4%2fkrt2nKLCmTpgxhccOOQhSR0ktGkPO73ffRGnfBfDhD8xbf1GAYs1x2oYgQdHXHnmyYz3b08QSGsc2iAFAHkYJxrhxpTpmQ4c8QPfqoln9PvJzod3ks9TblWz%2ffyOq%2f9YNfrP947n78A method: GET response: proto: HTTP/2.0 @@ -4421,18 +4096,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1888 + content_length: 160391 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "1888" + - "160391" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:50 GMT + - Tue, 05 Nov 2024 03:02:20 GMT Expires: - "-1" Pragma: @@ -4444,19 +4119,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - 3424d2a1-ae35-44d8-965a-b48445d0c005 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174051Z:924b3c4d-7a18-41b6-9b3c-156702e8e1e2 + - WESTUS2:20241105T030220Z:3424d2a1-ae35-44d8-965a-b48445d0c005 X-Msedge-Ref: - - 'Ref A: E164E596A35B43FBA236CC8033F10116 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:49Z' + - 'Ref A: CCC27F5AEBE343E5B1F21AE0A4AF4C60 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:18Z' status: 200 OK code: 200 - duration: 2.4247887s - - id: 67 + duration: 2.1252132s + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -4475,10 +4152,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -4486,18 +4163,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "555" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:51 GMT + - Tue, 05 Nov 2024 03:02:20 GMT Expires: - "-1" Pragma: @@ -4509,19 +4186,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - b96f1269-e615-407f-b4a0-a34872218afa X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174052Z:6aaad83c-0941-4f41-8740-0bfda408aaad + - WESTUS2:20241105T030220Z:b96f1269-e615-407f-b4a0-a34872218afa X-Msedge-Ref: - - 'Ref A: DAE6AF4853B340A6BF054F351FE9187F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:51Z' + - 'Ref A: F0DA6C7BB75447A788A84AC2B8123E6B Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:20Z' status: 200 OK code: 200 - duration: 1.0682906s - - id: 68 + duration: 779.8509ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -4540,10 +4219,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -4562,7 +4241,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:52 GMT + - Tue, 05 Nov 2024 03:02:21 GMT Expires: - "-1" Pragma: @@ -4574,19 +4253,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - d5fba203-4ae7-43d6-a101-a574fc0a63af X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174053Z:bdccc9f2-7b4e-4afb-8bf0-3e403607d85e + - WESTUS2:20241105T030221Z:d5fba203-4ae7-43d6-a101-a574fc0a63af X-Msedge-Ref: - - 'Ref A: 6C0434BC0B644CB4BFABAD0F40F24C32 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:52Z' + - 'Ref A: 0BAE400B5F5040C8AD0A94EA98C7B023 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:20Z' status: 200 OK code: 200 - duration: 951.3033ms - - id: 69 + duration: 410.1674ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -4607,10 +4288,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4618,18 +4299,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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:23Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:01:30.4733043Z","duration":"PT4.5756763S","correlationId":"547c15cd8d8950690bbca0a601f1094a","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' 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, 05 Nov 2024 03:02:21 GMT Expires: - "-1" Pragma: @@ -4641,19 +4322,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - 9765eb4b-5d1e-4e60-9ddd-2579294f9f6e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:7d64e986-130d-4ad0-bbe0-4a71d21db631 + - WESTUS2:20241105T030221Z:9765eb4b-5d1e-4e60-9ddd-2579294f9f6e X-Msedge-Ref: - - 'Ref A: C775A1954D2542169610AAFDEA244B9F Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:53Z' + - 'Ref A: DBFB7A30FD1B4984A8AF161CAA37F15E Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:21Z' status: 200 OK code: 200 - duration: 371.8085ms - - id: 70 + duration: 379.5201ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -4674,10 +4357,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4687,7 +4370,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-we4a0b2","name":"rg-azdtest-we4a0b2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","DeleteAfter":"2024-11-05T04:01:23Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -4696,7 +4379,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 05 Nov 2024 03:02:21 GMT Expires: - "-1" Pragma: @@ -4708,19 +4391,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - 736d8626-2537-4882-8b0d-2dcbbe151732 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:a2707f8a-2980-4a01-8b64-79e4bea446f5 + - WESTUS2:20241105T030221Z:736d8626-2537-4882-8b0d-2dcbbe151732 X-Msedge-Ref: - - 'Ref A: 20971CF4388148DC98957F5C3FA145F7 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: BD790E99E63E4A2F926D788E0877B18E Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:21Z' status: 200 OK code: 200 - duration: 88.0796ms - - id: 71 + duration: 86.4875ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -4741,10 +4426,10 @@ interactions: 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) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4754,7 +4439,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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","name":"stezntqadabguyg","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2"}}]}' headers: Cache-Control: - no-cache @@ -4763,7 +4448,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 05 Nov 2024 03:02:22 GMT Expires: - "-1" Pragma: @@ -4775,19 +4460,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - a032a801-96f3-4b54-b3e3-018a2d4ddd29 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:22f2cf11-2cce-47aa-9b00-3d5cf84cb839 + - WESTUS2:20241105T030222Z:a032a801-96f3-4b54-b3e3-018a2d4ddd29 X-Msedge-Ref: - - 'Ref A: D675C34FF72940CB880B01F92657BF91 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: CEA6004596DF45CCB5449B973D4D3B28 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:21Z' status: 200 OK code: 200 - duration: 207.9244ms - - id: 72 + duration: 172.7842ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -4808,10 +4495,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4819,18 +4506,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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:23Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:01:30.4733043Z","duration":"PT4.5756763S","correlationId":"547c15cd8d8950690bbca0a601f1094a","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' 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, 05 Nov 2024 03:02:22 GMT Expires: - "-1" Pragma: @@ -4842,19 +4529,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - ed6b4b46-777e-42e4-abec-1655683afede X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:261b21f7-c547-475a-976b-38bdbf58b3b8 + - WESTUS2:20241105T030222Z:ed6b4b46-777e-42e4-abec-1655683afede X-Msedge-Ref: - - 'Ref A: B1A48AA0C443408FB539174BC329F8E4 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: 7B8A7DDC0C794A3FAB66F752244273C3 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:22Z' status: 200 OK code: 200 - duration: 237.9343ms - - id: 73 + duration: 442.0011ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -4875,10 +4564,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-we4a0b2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4888,7 +4577,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-we4a0b2","name":"rg-azdtest-we4a0b2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","DeleteAfter":"2024-11-05T04:01:23Z","IntTag":"1989","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -4897,7 +4586,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:53 GMT + - Tue, 05 Nov 2024 03:02:22 GMT Expires: - "-1" Pragma: @@ -4909,19 +4598,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - fa198997-a237-49b3-b185-39af48fc25bc X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174054Z:ea676258-e4d2-47b5-989e-1ba2e3993ce8 + - WESTUS2:20241105T030222Z:fa198997-a237-49b3-b185-39af48fc25bc X-Msedge-Ref: - - 'Ref A: 3EA5A4CA8BD242A0811BDF201192FB7E Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: CA3BD1A8638D4CB3B7C18234E2B54340 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:22Z' status: 200 OK code: 200 - duration: 79.5469ms - - id: 74 + duration: 62.7573ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -4942,10 +4633,10 @@ interactions: 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) + - azsdk-go-armresources.Client/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4955,7 +4646,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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg","name":"stezntqadabguyg","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2"}}]}' headers: Cache-Control: - no-cache @@ -4964,7 +4655,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:40:54 GMT + - Tue, 05 Nov 2024 03:02:22 GMT Expires: - "-1" Pragma: @@ -4976,19 +4667,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - a06cfc9e-1401-4ee7-ac70-8cbcd8ed958a X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174055Z:0980e470-3dc5-456d-8a7a-8bae5f8e8f97 + - WESTUS2:20241105T030222Z:a06cfc9e-1401-4ee7-ac70-8cbcd8ed958a X-Msedge-Ref: - - 'Ref A: F7711D5EE1004808A2FAC2C5AB8E7FB5 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:54Z' + - 'Ref A: 6595C445974045C2AECC7337D35899DB Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:22Z' status: 200 OK code: 200 - duration: 503.451ms - - id: 75 + duration: 195.9712ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -5009,10 +4702,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we4a0b2?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -5029,11 +4722,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 19 Sep 2024 17:40:55 GMT + - Tue, 05 Nov 2024 03:02:23 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRTRBMEIyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663726051213612&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=YCZ11PesQ3vnVtMwrUHcS3Q4bgkFZc_JRdBqdrhKcg_H9MFFK_mvOMsD_PbK9J3gYhbYl165iqvqfxc962W9nOALXloylBShhTl9SraOHQstjOzNp8xwdG3VIQiIsN6uH2bfQYzLkaORWHiaHSUnTZIURYhTOGLWuWt44sH4w4fAHo5hBxwZBaizZ-1YdXUqQ-j0hAyk5ZyNhbtdn8Q0GR3ad3mjjUCPZpq_rUYcQduETRHyNtuLvyJUIXTK-fXn4CxpX9reLv6u8dzJR5ZQ_oFwu4u1eY7zZirX7cFGxyQyMsFruF3nS-FcNmp7tNYWqBJDZqWfjtAeGwP2dUWXkQ&h=84BX-cdaRENdTebha5DAEtYYkUXmXfTaQVsJnZmet3k Pragma: - no-cache Retry-After: @@ -5045,19 +4738,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 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 + - 3920b6a1-da31-4640-b988-fab7010d501e X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174056Z:895d9bc3-8726-4796-8978-67f93122de75 + - WESTUS2:20241105T030223Z:3920b6a1-da31-4640-b988-fab7010d501e X-Msedge-Ref: - - 'Ref A: 9F0CD7ED02D549D2AC487D2539F52266 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:40:55Z' + - 'Ref A: 38EB43863ED84A43902D7B28D4A9ED21 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:22Z' status: 202 Accepted code: 202 - duration: 1.2709377s - - id: 76 + duration: 1.0677803s + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -5076,10 +4771,10 @@ interactions: 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRTRBMEIyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663726051213612&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=YCZ11PesQ3vnVtMwrUHcS3Q4bgkFZc_JRdBqdrhKcg_H9MFFK_mvOMsD_PbK9J3gYhbYl165iqvqfxc962W9nOALXloylBShhTl9SraOHQstjOzNp8xwdG3VIQiIsN6uH2bfQYzLkaORWHiaHSUnTZIURYhTOGLWuWt44sH4w4fAHo5hBxwZBaizZ-1YdXUqQ-j0hAyk5ZyNhbtdn8Q0GR3ad3mjjUCPZpq_rUYcQduETRHyNtuLvyJUIXTK-fXn4CxpX9reLv6u8dzJR5ZQ_oFwu4u1eY7zZirX7cFGxyQyMsFruF3nS-FcNmp7tNYWqBJDZqWfjtAeGwP2dUWXkQ&h=84BX-cdaRENdTebha5DAEtYYkUXmXfTaQVsJnZmet3k method: GET response: proto: HTTP/2.0 @@ -5096,7 +4791,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 19 Sep 2024 17:43:15 GMT + - Tue, 05 Nov 2024 03:03:40 GMT Expires: - "-1" Pragma: @@ -5108,19 +4803,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - 0f79b0bd-836d-4f03-9ec8-48fdef9e82aa X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174315Z:f5db87fa-fdd6-49bb-90f2-b742e5b70647 + - WESTUS2:20241105T030340Z:0f79b0bd-836d-4f03-9ec8-48fdef9e82aa X-Msedge-Ref: - - 'Ref A: 17370A64E93F4B6BBD279A7798E95FF3 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:14Z' + - 'Ref A: C790D50E1A984438ACD1A5742E8289B6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:03:40Z' status: 200 OK code: 200 - duration: 467.9547ms - - id: 77 + duration: 562.9688ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -5141,10 +4838,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5152,18 +4849,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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-we4a0b2","azd-provision-param-hash":"8b72961d2f96e9a92397058fe282f3cbd0389ed086658fcdeabec3971ba1f024"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-we4a0b2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:23Z"},"intTagValue":{"type":"Int","value":1989},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:01:30.4733043Z","duration":"PT4.5756763S","correlationId":"547c15cd8d8950690bbca0a601f1094a","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-we4a0b2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-we4a0b2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/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-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stezntqadabguyg"},"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-we4a0b2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we4a0b2/providers/Microsoft.Storage/storageAccounts/stezntqadabguyg"}]}}' 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, 05 Nov 2024 03:03:40 GMT Expires: - "-1" Pragma: @@ -5175,19 +4872,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - d21c656e-0650-4a16-9f01-403b9f2057c8 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174315Z:2bac7b80-f1ad-474d-b917-7016e7eba35d + - WESTUS2:20241105T030340Z:d21c656e-0650-4a16-9f01-403b9f2057c8 X-Msedge-Ref: - - 'Ref A: FFE85A292DF74687AD1552E02FCB8610 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:15Z' + - 'Ref A: 50C4AA2233464C8FB58489BDB10520B6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:03:40Z' status: 200 OK code: 200 - duration: 396.9619ms - - id: 78 + duration: 207.7584ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -5198,7 +4897,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-we4a0b2"}}' form: {} headers: Accept: @@ -5212,10 +4911,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -5225,10 +4924,10 @@ interactions: trailer: {} content_length: 569 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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-we4a0b2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:03:43.802216Z","duration":"PT0.0007134S","correlationId":"8b0c7bbbe6f488abe625122c9def6348","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-we4a0b2-1730775430/operationStatuses/08584708310639267932?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -5236,7 +4935,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:18 GMT + - Tue, 05 Nov 2024 03:03:44 GMT Expires: - "-1" Pragma: @@ -5248,21 +4947,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 X-Ms-Deployment-Engine-Version: - - 1.109.0 + - 1.158.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 + - 2c9be0a9-5f2f-4fb6-b01c-ec119dc9ccaf X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174318Z:541db89f-72aa-439d-b073-d9de46002f16 + - WESTUS2:20241105T030344Z:2c9be0a9-5f2f-4fb6-b01c-ec119dc9ccaf X-Msedge-Ref: - - 'Ref A: 68AF294941174A39AEF90D303255250B Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:15Z' + - 'Ref A: 4D1DB60B481D4F81848282F244F69D4B Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:03:40Z' status: 200 OK code: 200 - duration: 3.2121567s - - id: 79 + duration: 3.3173459s + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -5281,10 +4982,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430/operationStatuses/08584708310639267932?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5303,7 +5004,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:19 GMT + - Tue, 05 Nov 2024 03:03:44 GMT Expires: - "-1" Pragma: @@ -5315,19 +5016,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + 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 + - f203b4bc-dbc4-4cc8-86ee-7101ddbe0ede X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174319Z:a6d9432a-334a-4983-b371-e9183a0d836e + - WESTUS2:20241105T030344Z:f203b4bc-dbc4-4cc8-86ee-7101ddbe0ede X-Msedge-Ref: - - 'Ref A: 1FA0ADA321014332B5E68F05787ABBB0 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:18Z' + - 'Ref A: E6D9DA468CE74EF8BC97777FDC10F606 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:03:44Z' status: 200 OK code: 200 - duration: 375.7876ms - - id: 80 + duration: 370.5502ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -5346,10 +5049,10 @@ interactions: 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 8b0c7bbbe6f488abe625122c9def6348 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-we4a0b2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5359,7 +5062,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-we4a0b2-1730775430","name":"azdtest-we4a0b2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-we4a0b2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:03:44.4814198Z","duration":"PT0.6799172S","correlationId":"8b0c7bbbe6f488abe625122c9def6348","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -5368,7 +5071,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Sep 2024 17:43:19 GMT + - Tue, 05 Nov 2024 03:03:44 GMT Expires: - "-1" Pragma: @@ -5380,19 +5083,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ca079ef3bf5a84fe21abca1d13e47de + - 8b0c7bbbe6f488abe625122c9def6348 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11992" + - "1098" X-Ms-Request-Id: - - 846f8331-4685-4538-bcc9-2240d1d88427 + - fa8674e1-e344-4a0a-acdb-662fbd06f3a0 X-Ms-Routing-Request-Id: - - WESTUS2:20240919T174319Z:846f8331-4685-4538-bcc9-2240d1d88427 + - WESTUS2:20241105T030344Z:fa8674e1-e344-4a0a-acdb-662fbd06f3a0 X-Msedge-Ref: - - 'Ref A: F8F2C4E4E8C44A4C8BA8F08F7DEEDBA7 Ref B: CO6AA3150217021 Ref C: 2024-09-19T17:43:19Z' + - 'Ref A: 6DF46484ADA049F4AA3F09FAAF1CA007 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:03:44Z' status: 200 OK code: 200 - duration: 243.3621ms + duration: 267.6667ms --- -env_name: azdtest-wb68583 +env_name: azdtest-we4a0b2 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1726767316" +time: "1730775430" 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..cf928d99eda 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:19:57 GMT + - Tue, 05 Nov 2024 02:57:35 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 + 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 + - c3dee2cb-46f1-4dd5-afff-65b942005519 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T001957Z:49cbab77-be83-43d2-9814-eb3449de5655 + - WESTUS2:20241105T025736Z:c3dee2cb-46f1-4dd5-afff-65b942005519 X-Msedge-Ref: - - 'Ref A: A92E72F61D0946BC88474B9F2DF20F8F Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:19:55Z' + - 'Ref A: 8E4D1603D408448486CC85E5B42915AF Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:33Z' status: 200 OK code: 200 - duration: 1.9400296s + duration: 2.9066285s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 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: 1854135 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=zZBBb4JAEIV%2fi3uWZLdiU72JOyRWZheWWRq9GbXWxUDSYkAM%2f71i6h%2fw1NPM5L1JvveubFsW1bE4b6pjWVCZ74sfNr2yD0jJpi9sWpxPpyGD2d95ZcW%2bqeLNd3XsH5b7C5syMXgbKFo12K48Nrw7TFk%2fNMH9gcnDAOWhTuxaok18JYPAyJNMeBaiBa4okAllc0W7TyOUjlJea2lvvm2jaOYrZ1ukfIwtjPVcqBTCyLaLV8yTRrVYo8x9dNiw7sHah%2fj3qHNQZGaRTR8997WDNTqG5%2fh9%2fnzVtBCacIzSjtCtOLrDSKdimVgVWT7R2r1DBhOgtryYMFhn8BWTu%2b0gYsp3ca%2ffvEE%2f0W0v6uB5rOu6Xw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2145188" + - "1854135" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:04 GMT + - Tue, 05 Nov 2024 02:57:43 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 7901757c-aed5-4451-babc-39afb5dce245 + - 62170e43-1658-4a5e-8597-1522067233cb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002004Z:7901757c-aed5-4451-babc-39afb5dce245 + - WESTUS2:20241105T025744Z:62170e43-1658-4a5e-8597-1522067233cb X-Msedge-Ref: - - 'Ref A: E0C4B4D7E208405AA8E005AD7D9116C6 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:19:57Z' + - 'Ref A: 2548EE43A0CB41619D19CCB860FBCC98 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:36Z' status: 200 OK code: 200 - duration: 7.0706195s + duration: 8.5861187s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zZBBb4JAEIV%2fi3uWZLdiU72JOyRWZheWWRq9GbXWxUDSYkAM%2f71i6h%2fw1NPM5L1JvveubFsW1bE4b6pjWVCZ74sfNr2yD0jJpi9sWpxPpyGD2d95ZcW%2bqeLNd3XsH5b7C5syMXgbKFo12K48Nrw7TFk%2fNMH9gcnDAOWhTuxaok18JYPAyJNMeBaiBa4okAllc0W7TyOUjlJea2lvvm2jaOYrZ1ukfIwtjPVcqBTCyLaLV8yTRrVYo8x9dNiw7sHah%2fj3qHNQZGaRTR8997WDNTqG5%2fh9%2fnzVtBCacIzSjtCtOLrDSKdimVgVWT7R2r1DBhOgtryYMFhn8BWTu%2b0gYsp3ca%2ffvEE%2f0W0v6uB5rOu6Xw%3d%3d method: GET response: proto: HTTP/2.0 @@ -165,18 +169,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 1755495 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=1ZHfboIwGMWfhV5DQhWThTuwNdu0LW2%2fz8XdGcYMQkqyYZAZ3n0y5CF2d%2f78Lk5ybiRvXFu6y7EtGwdNVbhvEt8ITyygXYzSFdc2O3615Uhsi57EhHpPnoTDVfwcAuL%2fEabp5o6GkWeqTSrYqdP4zgTqSLI0NaxmOtxvBPJQQso07NcSPj4NlWpnw04xvHN5LyBZKJZTyZJInF8i0VNp%2bSpT51cuIO8V6JWCailPQUAG%2f7H1X0x94xY4GpVxErtLXftkTNAuZ4tbqxCeZzu19xsmeM0lmGSHdgqG4Rc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "1755495" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:06 GMT + - Tue, 05 Nov 2024 02:57:48 GMT Expires: - "-1" Pragma: @@ -188,68 +192,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - fe6049e7-dba3-4465-b2f5-f8e31461ccfa + - cfbc92cd-9579-408a-a9af-7f10942cf328 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002006Z:fe6049e7-dba3-4465-b2f5-f8e31461ccfa + - WESTUS2:20241105T025749Z:cfbc92cd-9579-408a-a9af-7f10942cf328 X-Msedge-Ref: - - 'Ref A: DFB295F4DDAA4D96AFA7A3A5E85C3A88 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:20:04Z' + - 'Ref A: F929D3171BAA4A87B08E67C3A4891062 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:44Z' status: 200 OK code: 200 - duration: 2.0042263s + duration: 4.6439701s - id: 3 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 - method: PUT + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHfboIwGMWfhV5DQhWThTuwNdu0LW2%2fz8XdGcYMQkqyYZAZ3n0y5CF2d%2f78Lk5ybiRvXFu6y7EtGwdNVbhvEt8ITyygXYzSFdc2O3615Uhsi57EhHpPnoTDVfwcAuL%2fEabp5o6GkWeqTSrYqdP4zgTqSLI0NaxmOtxvBPJQQso07NcSPj4NlWpnw04xvHN5LyBZKJZTyZJInF8i0VNp%2bSpT51cuIO8V6JWCailPQUAG%2f7H1X0x94xY4GpVxErtLXftkTNAuZ4tbqxCeZzu19xsmeM0lmGSHdgqG4Rc%3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1553 + content_length: 1214064 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' 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 Cache-Control: - no-cache Content-Length: - - "1553" + - "1214064" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:20:09 GMT + - Tue, 05 Nov 2024 02:57:53 GMT Expires: - "-1" Pragma: @@ -261,20 +259,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - ef88980e-cdee-44d1-ac07-68598f91993e + - 9fd4246f-43bf-4fbc-b8d3-cd85cd030d8d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002009Z:ef88980e-cdee-44d1-ac07-68598f91993e + - WESTUS2:20241105T025754Z:9fd4246f-43bf-4fbc-b8d3-cd85cd030d8d X-Msedge-Ref: - - 'Ref A: 501B1DDB52F04482970751EEC3796175 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:20:06Z' - status: 201 Created - code: 201 - duration: 2.8298497s + - 'Ref A: 963857DF795B430BB6A96929641623B7 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:49Z' + status: 200 OK + code: 200 + duration: 4.3335781s - id: 4 request: proto: HTTP/1.1 @@ -294,10 +292,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d method: GET response: proto: HTTP/2.0 @@ -305,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 151382 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "151382" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:10 GMT + - Tue, 05 Nov 2024 02:57:54 GMT Expires: - "-1" Pragma: @@ -328,18 +326,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 + 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 + - 7b93170a-0fbd-4514-8a50-9d5853ce435b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002110Z:cc5f9652-5c04-45ab-900d-038db2f3eb35 + - WESTUS2:20241105T025755Z:7b93170a-0fbd-4514-8a50-9d5853ce435b X-Msedge-Ref: - - 'Ref A: 8276DAD1ED704070812FE5B2B9C9A278 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:10Z' + - 'Ref A: 2152229791294FD79EE2FD21DE5FB9E6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:54Z' status: 200 OK code: 200 - duration: 246.8555ms + duration: 1.3953721s - id: 5 request: proto: HTTP/1.1 @@ -359,10 +359,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:10 GMT + - Tue, 05 Nov 2024 02:57:56 GMT Expires: - "-1" Pragma: @@ -393,18 +393,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 + 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 + - 88f3caed-c2ef-42db-954c-74dfb6bca55b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002110Z:6cf3fb47-5556-4c77-b3a1-9971189efc3c + - WESTUS2:20241105T025756Z:88f3caed-c2ef-42db-954c-74dfb6bca55b X-Msedge-Ref: - - 'Ref A: 030A456024E243ACA6FE7E87E18B5ACD Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:10Z' + - 'Ref A: 90064ADB706A4F7BA863E2E85F52C8E5 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:55Z' status: 200 OK code: 200 - duration: 414.2904ms + duration: 1.274781s - id: 6 request: proto: HTTP/1.1 @@ -419,17 +421,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -437,18 +437,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 12 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":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:10 GMT + - Tue, 05 Nov 2024 02:57:56 GMT Expires: - "-1" Pragma: @@ -460,30 +460,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c411042019241b5313fd2fb11f022180 + - 76e6d137da216d4343620cfd6d5ae0a2 + 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 + - c1e0c22e-fe58-41a6-983b-4d27bbe93410 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002111Z:669eab8e-727b-410c-b95b-926cea7c6694 + - WESTUS2:20241105T025757Z:c1e0c22e-fe58-41a6-983b-4d27bbe93410 X-Msedge-Ref: - - 'Ref A: 2E8A2A23A5914DA0A7192ACB3997898F Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:11Z' + - 'Ref A: 0F41652F3ECF4101A73D729AB14F810E Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:56Z' status: 200 OK code: 200 - duration: 68.5938ms + duration: 437.8508ms - id: 7 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-w618db2"},"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-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"}}' form: {} headers: Accept: @@ -492,30 +494,34 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4683" + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 - method: GET + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/validate?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: 1959 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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:57:57Z"},"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":"76e6d137da216d4343620cfd6d5ae0a2","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "1959" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:15 GMT + - Tue, 05 Nov 2024 02:57:58 GMT Expires: - "-1" Pragma: @@ -527,30 +533,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 - X-Ms-Ratelimit-Remaining-Subscription-Reads: + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 61cc83c6-15d5-4977-885a-e68307cf3058 + - dc18d0d6-c8bc-42f6-ae6e-3962f2966b34 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002115Z:61cc83c6-15d5-4977-885a-e68307cf3058 + - WESTUS2:20241105T025759Z:dc18d0d6-c8bc-42f6-ae6e-3962f2966b34 X-Msedge-Ref: - - 'Ref A: 92A1A1CA44FB4A9B9A10E5019EFAD658 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:13Z' + - 'Ref A: AEEFA8698B5142708D2882517563DEF8 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:57Z' status: 200 OK code: 200 - duration: 1.721733s + duration: 2.1165064s - id: 8 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-w618db2"},"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-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"}}' form: {} headers: Accept: @@ -559,11 +567,86 @@ 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1554 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:57:59Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T02:58:01.3832631Z","duration":"PT0.0006141S","correlationId":"76e6d137da216d4343620cfd6d5ae0a2","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2-1730775430/operationStatuses/08584708314056884580?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "1554" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:58:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 02812323-1113-485b-80a0-078dcb25e164 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025802Z:02812323-1113-485b-80a0-078dcb25e164 + X-Msedge-Ref: + - 'Ref A: 3C85AB2C4A8847EEA8229029B6C0AB63 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:57:59Z' + status: 201 Created + code: 201 + duration: 2.6481427s + - id: 9 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/operationStatuses/08584708314056884580?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -571,18 +654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + 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=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: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:22 GMT + - Tue, 05 Nov 2024 02:58:31 GMT Expires: - "-1" Pragma: @@ -594,19 +677,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 0f9c8e72-8b3f-455a-ab38-242a69b1ddbe + - 8d15db9d-287d-422b-8bba-27ca5b6a43ba X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002122Z:0f9c8e72-8b3f-455a-ab38-242a69b1ddbe + - WESTUS2:20241105T025832Z:8d15db9d-287d-422b-8bba-27ca5b6a43ba X-Msedge-Ref: - - 'Ref A: 50BB440615164E8B8BF9BF9DF990E198 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:15Z' + - 'Ref A: 49308197D04A4A7CB093BB3AC3040F63 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:32Z' status: 200 OK code: 200 - duration: 7.0950691s - - id: 9 + duration: 219.2371ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -625,10 +710,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -636,18 +721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 2482 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:57:59Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T02:58:30.2159677Z","duration":"PT28.8333187S","correlationId":"76e6d137da216d4343620cfd6d5ae0a2","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Tue, 05 Nov 2024 02:58:32 GMT Expires: - "-1" Pragma: @@ -659,30 +744,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 + - 76e6d137da216d4343620cfd6d5ae0a2 + 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 + - f871d929-8739-4f7e-9bee-65b478a22b96 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:c96dd1ad-5439-49b5-8650-05029a36a83c + - WESTUS2:20241105T025833Z:f871d929-8739-4f7e-9bee-65b478a22b96 X-Msedge-Ref: - - 'Ref A: BD1DE156FC724D24937E97A12CEEF973 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:22Z' + - 'Ref A: 604EFAA2DD3646BBA7A77768B7620906 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:32Z' status: 200 OK code: 200 - duration: 1.9986489s - - id: 10 + duration: 549.922ms + - id: 11 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: @@ -691,34 +778,99 @@ interactions: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 76e6d137da216d4343620cfd6d5ae0a2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w618db2%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-w618db2","name":"rg-azdtest-w618db2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","DeleteAfter":"2024-11-05T03:57:59Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "4299" + - "396" Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:58: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: + - 76e6d137da216d4343620cfd6d5ae0a2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1098" + X-Ms-Request-Id: + - d39fa012-9138-40be-9011-164f2e3fe22d + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025833Z:d39fa012-9138-40be-9011-164f2e3fe22d + X-Msedge-Ref: + - 'Ref A: 9137DBF51AE54D3A9134DD8CCC8DC576 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:33Z' + status: 200 OK + code: 200 + duration: 138.3322ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b28de590d2a8d802dd1599deeba2c6c9 + 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: 4787 + content_length: 35781 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: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:24 GMT + - Tue, 05 Nov 2024 02:58:39 GMT Expires: - "-1" Pragma: @@ -730,19 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 4279f19f40e6b2341fc29028f78b0a56 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 9d9cff33-4143-4e18-b7ef-5c7574eb6364 + - 57460b88-6e24-46c8-90cb-e7e307aa716e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002124Z:9d9cff33-4143-4e18-b7ef-5c7574eb6364 + - WESTUS2:20241105T025840Z:57460b88-6e24-46c8-90cb-e7e307aa716e X-Msedge-Ref: - - 'Ref A: 2D3367C24A4046469D17D72002D57BCE Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:24Z' + - 'Ref A: 434581846842469B98480108C420DCEA Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:37Z' status: 200 OK code: 200 - duration: 48.0328ms - - id: 11 + duration: 3.3078572s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -763,9 +917,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - b28de590d2a8d802dd1599deeba2c6c9 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -774,18 +928,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2155262 + content_length: 1856943 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=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","location":"eastus2","name":"azdtest-w618db2-1730775430","properties":{"correlationId":"76e6d137da216d4343620cfd6d5ae0a2","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2","resourceName":"rg-azdtest-w618db2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.8333187S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}],"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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-11-05T03:57:59Z"},"environmentName":{"type":"String","value":"azdtest-w618db2"},"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-11-05T02:58:30.2159677Z"},"tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2155262" + - "1856943" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:33 GMT + - Tue, 05 Nov 2024 02:58:47 GMT Expires: - "-1" Pragma: @@ -797,19 +951,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - b28de590d2a8d802dd1599deeba2c6c9 + 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 + - 43be2196-8f4c-4cfd-a471-95730286e716 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002133Z:401e254c-16b6-4cf6-b031-2bf013c85c6d + - WESTUS2:20241105T025847Z:43be2196-8f4c-4cfd-a471-95730286e716 X-Msedge-Ref: - - 'Ref A: 65C9465D4F4C41529D10FB99FB4D9D7A Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:27Z' + - 'Ref A: 8AAF0D65CB7D4422A3B1B1E135E4A513 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:40Z' status: 200 OK code: 200 - duration: 6.6584482s - - id: 12 + duration: 7.1963336s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -828,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b28de590d2a8d802dd1599deeba2c6c9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -839,18 +995,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 1777031 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=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "1777031" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:34 GMT + - Tue, 05 Nov 2024 02:58:51 GMT Expires: - "-1" Pragma: @@ -862,19 +1018,88 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 90d2762e-8332-4477-accb-bb7ca74315ae + - f8b2f674-466b-4202-b581-e4a2340d5e1c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:90d2762e-8332-4477-accb-bb7ca74315ae + - WESTUS2:20241105T025852Z:f8b2f674-466b-4202-b581-e4a2340d5e1c X-Msedge-Ref: - - 'Ref A: 7CBF3B4205EB4564B1E6CDB435AD9FFB Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:33Z' + - 'Ref A: 51BB19AB4F2141AB9A0BFEAB675AF524 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:48Z' status: 200 OK code: 200 - duration: 1.7002535s - - id: 13 + duration: 4.3489841s + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1218558 + 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=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1218558" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:58:55 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 1011358d-11cf-456c-a618-3f54907aba2f + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025856Z:1011358d-11cf-456c-a618-3f54907aba2f + X-Msedge-Ref: + - 'Ref A: 915E611716B046158B964941BEED129A Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:52Z' + status: 200 OK + code: 200 + duration: 3.546018s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -888,36 +1113,1337 @@ 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 151382 + 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "151382" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:58:57 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ed932252-5cf9-4990-bba7-debb7fe13d60 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025858Z:ed932252-5cf9-4990-bba7-debb7fe13d60 + X-Msedge-Ref: + - 'Ref A: E6AB1BF7F9744AF287A5C6E38ECC69D7 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:56Z' + status: 200 OK + code: 200 + duration: 1.8593454s + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5320 + 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5320" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:58:58 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - deac6021-d721-4da0-9cd3-0479536bf3e7 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025859Z:deac6021-d721-4da0-9cd3-0479536bf3e7 + X-Msedge-Ref: + - 'Ref A: DB36628507744D02BE49F18236388EF9 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:58Z' + status: 200 OK + code: 200 + duration: 1.030587s + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d + 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: + - Tue, 05 Nov 2024 02:58:58 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ef19aac6-0996-4bb2-af67-73f82bb081ec + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025859Z:ef19aac6-0996-4bb2-af67-73f82bb081ec + X-Msedge-Ref: + - 'Ref A: BCEBCA79FA9E49BBA3CA9EC9330A1DA5 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:59Z' + status: 200 OK + code: 200 + duration: 434.6035ms + - id: 19 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + 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: + - Tue, 05 Nov 2024 02:58:58 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b28de590d2a8d802dd1599deeba2c6c9 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" + X-Ms-Request-Id: + - 432ce7ae-464e-403b-8fb4-913dfcd74694 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025859Z:432ce7ae-464e-403b-8fb4-913dfcd74694 + X-Msedge-Ref: + - 'Ref A: BB991D2B1566420FB01C316403C957B1 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:58:59Z' + status: 200 OK + code: 200 + duration: 102.4252ms + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + 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: 1857874 + 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=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","location":"eastus2","name":"azdtest-w618db2-1730775430","properties":{"correlationId":"76e6d137da216d4343620cfd6d5ae0a2","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2","resourceName":"rg-azdtest-w618db2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT28.8333187S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}],"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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-11-05T03:57:59Z"},"environmentName":{"type":"String","value":"azdtest-w618db2"},"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-11-05T02:58:30.2159677Z"},"tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1857874" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:09 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - 950b030b-ad56-422f-b59b-ef044cd51979 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025910Z:950b030b-ad56-422f-b59b-ef044cd51979 + X-Msedge-Ref: + - 'Ref A: F4ACB076400A44BDBC0B5D80D241BAD2 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:03Z' + status: 200 OK + code: 200 + duration: 7.1603042s + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFBb4JAEIV%2fi3vWhFVsqjdxl8TK7MIyS4M3oxYFA0mLAdbw3wttOfRYe5qZvPeSb2bu5FDk5SW%2f7ctLkWORnfIPsryTVx6iDqdkmd%2bu1zHhq5%2fxTvJTXfr79%2fLSB7anhiwJHT2PBMY1mHhCxl8OVVSDRqf2SGWuAyypAr1joANbMMdR7MoCK3JBc0ugwwKM1gKPb4oK6YVWJZnufIda4MrushRwYwDjGTRUq0homb7wiMMTZMpR%2fOyFWVJD2s9BLQxUwDJbmGRK2oG%2fX%2bzv%2bNb%2f8UWqO%2fRsDobP5ZqKkLueNptfqB163aOuuUC18nQ43L5%2fBddK%2bvwxftt6%2fPy4oRJhDkzPII0tSJOZDOk20MLT1kJ%2bv2DB0RSNcp1dxM8%2bpl3PqY%2fZ0e%2f1zuv0FdJDI5LJhLRt%2bwk%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1777031 + 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=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1777031" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:14 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 6a788d34-d324-4ac4-8440-5b23fa29bdba + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025915Z:6a788d34-d324-4ac4-8440-5b23fa29bdba + X-Msedge-Ref: + - 'Ref A: 2213C81A61E141AC8D244F4C9E31731E Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:10Z' + status: 200 OK + code: 200 + duration: 4.9784066s + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZFBboMwEEXPgtcgQSBSxc7EjpoS22CPU6W7iNKIgEzVEhGIuHuhBPUI3c3%2f%2fy2eNHeU1aYpzPXUFLWBuszNNwrviGIFWq2m0%2bS3Jjl9NcVExHmHQuRZTxaH4431RwfZv4Ss22Xz3MCS5TZi5Nym%2bo0wnQacRJEkFUndw5Zp6nKISAqHDYf3D%2blxsVduK4geuaxjgFeC7FzWlz7rccA6jyv6GYvLC2WQdQJ0ywjuBHYcNNgP139UzTxORs3L7qG6Tv5U07WA0ufnWfWVKqBaioSi0FyrykZTo5W%2fRB0roeF5ifM6vmGGN5SDxHut5mIYfgA%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1218558 + 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=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1218558" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:18 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - bf0a32b6-1e91-47bf-a4d9-4ccabb06bec2 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025919Z:bf0a32b6-1e91-47bf-a4d9-4ccabb06bec2 + X-Msedge-Ref: + - 'Ref A: 291B8FEF98754ECBA8B5E4684D38408D Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:15Z' + status: 200 OK + code: 200 + duration: 3.5400429s + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZJBT4MwFMc%2fy3reEpjMLLsBLVG397rC68y8LYgLY4FEWSgs%2b%2b5SJ9F41JOn9rX%2ftr%2f3S88srco6L0%2b7Oq9KqoqsfGOLMxN%2bQjqZ2mmZmXq9e61zm1hmLVswdzQfIW0NdNsJG38k4qoZ9lxnPoqLKAC%2bb5R%2b4qCVhzwIYn7kytlEoIWDFHBFmxDp%2bSV2Ua4Sp5Fc97m0Ra6nQHsPurTtXzAYuphEgQJKjTw8iH5sJQkX%2bHYKajJhl%2fEn77%2fBDX30uW8ls0V5Oh7H7FFY4b9swPuLb4Pke3jQHVAxg07MpPUtopXu7m%2bhUAY7aIAXHhzAWNcWNRRIsb%2byxF%2f8QsdyLb6v6ORmKPUykZruhvLab%2f%2fBrsd%2f3He5vAM%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 151382 + 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "151382" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:20 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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 33f57827-7779-4a1a-ac5b-1b316525f249 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025920Z:33f57827-7779-4a1a-ac5b-1b316525f249 + X-Msedge-Ref: + - 'Ref A: 3DD6EC1F87C94CA9BC582123120CC9C2 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:19Z' + status: 200 OK + code: 200 + duration: 1.3488036s + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5320 + 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5320" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:20 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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a824d0c4-7038-4430-8f63-1f9e6a18db34 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025921Z:a824d0c4-7038-4430-8f63-1f9e6a18db34 + X-Msedge-Ref: + - 'Ref A: 7B06152CAFC24478A2CA0840A626DEEF Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:21Z' + status: 200 OK + code: 200 + duration: 671.0862ms + - 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-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d + 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: + - Tue, 05 Nov 2024 02:59:21 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - c43653fb-671a-4748-822a-23de59eb481f + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025922Z:c43653fb-671a-4748-822a-23de59eb481f + X-Msedge-Ref: + - 'Ref A: 510CDE5D10FA49919FD5E0939EA1E649 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:21Z' + status: 200 OK + code: 200 + duration: 431.646ms + - 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:57:59Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T02:58:30.2159677Z","duration":"PT28.8333187S","correlationId":"76e6d137da216d4343620cfd6d5ae0a2","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2482" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:21 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b47c7e08-7638-49da-8e41-c72c51f11cad + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025922Z:b47c7e08-7638-49da-8e41-c72c51f11cad + X-Msedge-Ref: + - 'Ref A: 1B0833D4EBB640A986AC4359E88FD46D Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:22Z' + status: 200 OK + code: 200 + duration: 319.7829ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w618db2%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-w618db2","name":"rg-azdtest-w618db2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","DeleteAfter":"2024-11-05T03:57:59Z","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, 05 Nov 2024 02:59:21 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - c99a6ce7-4774-48c4-918f-62a42c8a80e3 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025922Z:c99a6ce7-4774-48c4-918f-62a42c8a80e3 + X-Msedge-Ref: + - 'Ref A: 54023A9D9ECC40B78E98E3FE01176EA9 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:22Z' + status: 200 OK + code: 200 + duration: 43.2139ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.Client/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk","name":"st4ebtsu6vhz7fk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59:21 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1098" + X-Ms-Request-Id: + - faa9f8ce-27d8-4e24-b134-9f2ec7ad06dc + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025922Z:faa9f8ce-27d8-4e24-b134-9f2ec7ad06dc + X-Msedge-Ref: + - 'Ref A: BAB226835261493F90B73A5E53DAAC43 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:22Z' + status: 200 OK + code: 200 + duration: 178.292ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:57:59Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T02:58:30.2159677Z","duration":"PT28.8333187S","correlationId":"76e6d137da216d4343620cfd6d5ae0a2","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2482" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59: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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - fdc566c2-b6ed-4b93-b4bb-73802aae58ab + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025922Z:fdc566c2-b6ed-4b93-b4bb-73802aae58ab + X-Msedge-Ref: + - 'Ref A: 7C5D60C25D2A4314818C7E5B65B14E1F Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:22Z' + status: 200 OK + code: 200 + duration: 260.2589ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w618db2%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-w618db2","name":"rg-azdtest-w618db2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","DeleteAfter":"2024-11-05T03:57:59Z","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, 05 Nov 2024 02:59: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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16497" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1097" + X-Ms-Request-Id: + - 660f33c3-9e7b-45d6-9d64-a9eb620091fa + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025923Z:660f33c3-9e7b-45d6-9d64-a9eb620091fa + X-Msedge-Ref: + - 'Ref A: A1F027BE30CF4677BC82B141B43632D5 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:23Z' + status: 200 OK + code: 200 + duration: 42.7485ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.Client/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk","name":"st4ebtsu6vhz7fk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "364" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 02:59: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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 0ad8252d-5b88-45de-9de6-68f36145be1b + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025923Z:0ad8252d-5b88-45de-9de6-68f36145be1b + X-Msedge-Ref: + - 'Ref A: 828DCE0AB77B43CBA45756ED61AFE054 Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:23Z' + status: 200 OK + code: 200 + duration: 199.4293ms + - 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-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w618db2?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, 05 Nov 2024 02:59:23 GMT + Expires: + - "-1" + Location: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNjE4REIyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663724259031154&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=FrjsYM3tFEb43r14kNWPpQuhPYStl574KIFXkB8Q0tVvWpitThAFyNMN4hSCydbTv0nHUIIcSRM6lORprQtKZ63lO_KCajibaQff3tQI9TRZccUDIQNhBAnSsQqK7Yi9iQT0bylQWc-H5zFCiov0jqI4rljbDZhI-ZPMjvktdGBWGLiwQsudb0NKnbMkAwvR76JDe2PumoCzGmq2UBxXl2OnwrMppnPp0g040uX0Etme7vi-_ZFaSVzTBIShHJmW5qrbyrsPLR5MHbNo5Q3bRtXkf4P0bxpiXxAlI6poGJkfJx4i9P1L2uJTR6cMEvzhb3XgBLPaCdEgn4O3Ewihsw&h=iYnTqOKdIHg4bWp4I3RH06nEdld0imGEWUIhneetPKQ + 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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Deletes: + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" + X-Ms-Request-Id: + - b72e031e-734d-422b-a419-05e18f4da8f4 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T025924Z:b72e031e-734d-422b-a419-05e18f4da8f4 + X-Msedge-Ref: + - 'Ref A: AC9C1DED2C38471E95EC4243C09374CF Ref B: CO6AA3150217033 Ref C: 2024-11-05T02:59:23Z' + status: 202 Accepted + code: 202 + duration: 1.246989s + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNjE4REIyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663724259031154&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=FrjsYM3tFEb43r14kNWPpQuhPYStl574KIFXkB8Q0tVvWpitThAFyNMN4hSCydbTv0nHUIIcSRM6lORprQtKZ63lO_KCajibaQff3tQI9TRZccUDIQNhBAnSsQqK7Yi9iQT0bylQWc-H5zFCiov0jqI4rljbDZhI-ZPMjvktdGBWGLiwQsudb0NKnbMkAwvR76JDe2PumoCzGmq2UBxXl2OnwrMppnPp0g040uX0Etme7vi-_ZFaSVzTBIShHJmW5qrbyrsPLR5MHbNo5Q3bRtXkf4P0bxpiXxAlI6poGJkfJx4i9P1L2uJTR6cMEvzhb3XgBLPaCdEgn4O3Ewihsw&h=iYnTqOKdIHg4bWp4I3RH06nEdld0imGEWUIhneetPKQ + 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, 05 Nov 2024 03:00: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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 581ed782-01bc-46be-91cb-49f1adebd0a7 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030041Z:581ed782-01bc-46be-91cb-49f1adebd0a7 + X-Msedge-Ref: + - 'Ref A: 25576629C24E49C2B37950C90FD62F57 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:40Z' + status: 200 OK + code: 200 + duration: 434.261ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T03:57:59Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T02:58:30.2159677Z","duration":"PT28.8333187S","correlationId":"76e6d137da216d4343620cfd6d5ae0a2","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2482" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:00: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: + - 51121ce00a30b597d3c935411003465d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 0bf94887-b29c-4f87-a9d0-1aafbf3c4585 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030041Z:0bf94887-b29c-4f87-a9d0-1aafbf3c4585 + X-Msedge-Ref: + - 'Ref A: A83D71FAECBD48D79D5B92C1D690EA9B Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:41Z' + status: 200 OK + code: 200 + duration: 233.9741ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 346 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w618db2"}}' + 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.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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: GET + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + 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-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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w618db2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:00:43.8449722Z","duration":"PT0.0008339S","correlationId":"51121ce00a30b597d3c935411003465d","providers":[],"dependencies":[]}}' headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/operationStatuses/08584708312433798048?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "2482" + - "570" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Tue, 05 Nov 2024 03:00:43 GMT Expires: - "-1" Pragma: @@ -929,19 +2455,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Reads: + - 51121ce00a30b597d3c935411003465d + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - febb0223-f462-42a1-a9bc-41e7775b4348 + - 03ba7de2-9bfa-4e5e-98cf-b0aca9ca7533 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:febb0223-f462-42a1-a9bc-41e7775b4348 + - WESTUS2:20241105T030044Z:03ba7de2-9bfa-4e5e-98cf-b0aca9ca7533 X-Msedge-Ref: - - 'Ref A: 80B9881A0C8840ACB200D9FD99BA05A5 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: 184FAB883D5344E090B712DB26B4D6A6 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:00:41Z' status: 200 OK code: 200 - duration: 271.8012ms - - id: 14 + duration: 2.748462s + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -955,17 +2485,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/operationStatuses/08584708312433798048?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -973,18 +2501,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 22 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: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Tue, 05 Nov 2024 03:01:13 GMT Expires: - "-1" Pragma: @@ -996,19 +2524,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 51121ce00a30b597d3c935411003465d + 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 + - df13156b-748a-44d1-9d55-ffd1e9712d82 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002135Z:6ccbcf60-7f39-4ef3-9fe4-fe4743ae6e1d + - WESTUS2:20241105T030114Z:df13156b-748a-44d1-9d55-ffd1e9712d82 X-Msedge-Ref: - - 'Ref A: F519186E9405430E824379FE861C07BE Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: E8E54230CDE54EC3818163975BD84D16 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:14Z' status: 200 OK code: 200 - duration: 58.9299ms - - id: 15 + duration: 238.069ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1022,17 +2552,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 51121ce00a30b597d3c935411003465d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1040,18 +2568,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 604 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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w618db2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:00:46.8810413Z","duration":"PT3.036903S","correlationId":"51121ce00a30b597d3c935411003465d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "604" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:35 GMT + - Tue, 05 Nov 2024 03:01:14 GMT Expires: - "-1" Pragma: @@ -1063,19 +2591,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - 51121ce00a30b597d3c935411003465d + 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 + - dad7de84-762a-4af0-a797-966bebac871e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:99e1a355-c505-4f9e-85e5-32723cf4093c + - WESTUS2:20241105T030115Z:dad7de84-762a-4af0-a797-966bebac871e X-Msedge-Ref: - - 'Ref A: 099749266E6E45BAB88638E60EBD7BA7 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:35Z' + - 'Ref A: 8138883D04BA450D9388F366AED2346D Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:14Z' status: 200 OK code: 200 - duration: 583.1059ms - - id: 16 + duration: 294.5758ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1096,10 +2626,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-armsubscriptions/v1.0.0 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + 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 @@ -1107,18 +2637,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 35781 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: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:36 GMT + - Tue, 05 Nov 2024 03:01:20 GMT Expires: - "-1" Pragma: @@ -1130,19 +2660,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - cb6eea870424286b64fe30699884d2b3 + 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 + - 63cb8b69-1bbd-4d54-9316-601a55ae42e1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:c21ea1f7-00b2-451e-9287-2df5574223f4 + - WESTUS2:20241105T030121Z:63cb8b69-1bbd-4d54-9316-601a55ae42e1 X-Msedge-Ref: - - 'Ref A: C4C2FE1A6E4B471AB5577E6C70959415 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:36Z' + - 'Ref A: 41913B3FB53B40589FED321D587CB69A Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:18Z' status: 200 OK code: 200 - duration: 356.8639ms - - id: 17 + duration: 2.8032256s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1163,10 +2695,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + 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 @@ -1174,18 +2706,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 1852735 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=pZFPb4JAEMU%2fi3vWZBFsqjdxl8TK7MIyQ6M3o1YFA0mL4Y%2fhuxfaeuix9jTz8t4kv5m5sV2eFefsui3OeYZ5esg%2b2OzGXmWEFI3ZLLteLkMm5z%2fyxrJDVQTb9%2bLcD6wONZsxa%2fA8ULiuoFmP2PArYfLy7lljZ2BSzwVxLEPaCKDQUcJ1jbiIkMcekOQKXRFivFC4fzOW0n7ESy2oy%2b0qhXNbo2yUAAeEtKG2yMSKdPIiYwlPkBqX%2bElGPK8g6XVYqQZKEKmjkWrW3vn7xf6Oz%2f%2bN76iEGsB0Ao2c6IWlIun51Cx%2foXboVY%2b6kArN3Kfofvv%2bFZKMDuRj%2fA5%2f%2fPy4tDTCBATZkKw5JEdbR9YqJOUTn%2brvF0wlNnltPHcTy1OASddLK8B0H%2fR%2bl3X7CsmuVsfRiLVt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","location":"eastus2","name":"azdtest-w618db2-1730775430","properties":{"correlationId":"51121ce00a30b597d3c935411003465d","dependencies":[],"duration":"PT3.036903S","mode":"Incremental","outputResources":[],"outputs":{},"parameters":{},"providers":[],"provisioningState":"Succeeded","templateHash":"14737569621737367585","timestamp":"2024-11-05T03:00:46.8810413Z"},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w618db2"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "1852735" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:36 GMT + - Tue, 05 Nov 2024 03:01:28 GMT Expires: - "-1" Pragma: @@ -1197,19 +2729,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1100" X-Ms-Request-Id: - - c01fd638-63a5-43cc-a6e9-cf20efa49374 + - 5cb79e45-388a-4e92-959c-7bb074d528da X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002136Z:c01fd638-63a5-43cc-a6e9-cf20efa49374 + - WESTUS2:20241105T030129Z:5cb79e45-388a-4e92-959c-7bb074d528da X-Msedge-Ref: - - 'Ref A: 01C659CAC93745859BEB365C9EE51428 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:36Z' + - 'Ref A: E7DFA6B28FB641DEB0535CD1F5CC6F6B Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:21Z' status: 200 OK code: 200 - duration: 60.4304ms - - id: 18 + duration: 7.2389248s + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1223,17 +2757,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFPb4JAEMU%2fi3vWZBFsqjdxl8TK7MIyQ6M3o1YFA0mL4Y%2fhuxfaeuix9jTz8t4kv5m5sV2eFefsui3OeYZ5esg%2b2OzGXmWEFI3ZLLteLkMm5z%2fyxrJDVQTb9%2bLcD6wONZsxa%2fA8ULiuoFmP2PArYfLy7lljZ2BSzwVxLEPaCKDQUcJ1jbiIkMcekOQKXRFivFC4fzOW0n7ESy2oy%2b0qhXNbo2yUAAeEtKG2yMSKdPIiYwlPkBqX%2bElGPK8g6XVYqQZKEKmjkWrW3vn7xf6Oz%2f%2bN76iEGsB0Ao2c6IWlIun51Cx%2foXboVY%2b6kArN3Kfofvv%2bFZKMDuRj%2fA5%2f%2fPy4tDTCBATZkKw5JEdbR9YqJOUTn%2brvF0wlNnltPHcTy1OASddLK8B0H%2fR%2bl3X7CsmuVsfRiLVt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -1241,18 +2773,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 1788297 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=xZHLboMwEEW%2fJV6DxCtSxQ5iR22TsbE9TpXuIkojAjJSS0RIxL83lLDpD3Q3996zONLcSN7YtrTnQ1s2FpuqsN8kvhGWaDQ6GE9bXNrs8NWWI7EpehITf%2fG04Li%2fwHXvEueXUE03b74XLVS1ToEeO2neKRgZcZqmitZUers1GOZxTKnE3Yrjx6fyudhqrxPU3Lm8B0wCjiyAK4sEZSFon2u2zMTplQHmvUDTAYVASNclg%2fNw%2fTdVQXOf0ySC00sE%2fV9VuRRYhfw4qb4xjcwokTES23NdO2RsjA7naDZaGHye47Te3zDBK8ZRJVujp2IYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "364" + - "1788297" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:37 GMT + - Tue, 05 Nov 2024 03:01:34 GMT Expires: - "-1" Pragma: @@ -1264,19 +2796,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - cb6eea870424286b64fe30699884d2b3 + 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 + - c1c136c0-040b-4c22-afdc-c3863fbc83ce X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002137Z:28b1f8c9-3200-48bc-ae94-c690a6845d68 + - WESTUS2:20241105T030134Z:c1c136c0-040b-4c22-afdc-c3863fbc83ce X-Msedge-Ref: - - 'Ref A: 1009D9BC95854C67ABB17860FFEA0B70 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:21:37Z' + - 'Ref A: E66567E43C9640ADAF24B373D9667754 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:29Z' status: 200 OK code: 200 - duration: 568.4032ms - - id: 19 + duration: 5.0176607s + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1290,42 +2824,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHLboMwEEW%2fJV6DxCtSxQ5iR22TsbE9TpXuIkojAjJSS0RIxL83lLDpD3Q3996zONLcSN7YtrTnQ1s2FpuqsN8kvhGWaDQ6GE9bXNrs8NWWI7EpehITf%2fG04Li%2fwHXvEueXUE03b74XLVS1ToEeO2neKRgZcZqmitZUers1GOZxTKnE3Yrjx6fyudhqrxPU3Lm8B0wCjiyAK4sEZSFon2u2zMTplQHmvUDTAYVASNclg%2fNw%2fTdVQXOf0ySC00sE%2fV9VuRRYhfw4qb4xjcwokTES23NdO2RsjA7naDZaGHye47Te3zDBK8ZRJVujp2IYfgA%3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1210707 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=xZJdb8IgFIZ%2fi1xrUmpdjHdtodmmB4SCi96Zzhlb0yazprTG%2fz7wIy673C52BYfzQp7zhBPKqrLelcd1vatKVRWb8oAmJ0TDVOnUd9tyY%2br5%2brPeucR006IJwr1xj6mlgW45QP1LQlbNvYe9cU8WSQRk2wi9IqBFwEgUSbInwlskoKnHVESEWsRMvX9IzPgs9RpOtM1lLSMaQ174jFAMSrcsxixNopXQB8O6qpWEDm3fMEUxJ9sBOvdvvP%2bF64PaBtBlrRVibrgCVGZ4%2fkrt2nKLCmTpgxhccOOQhSR0ktGkPO73ffRGnfBfDhD8xbf1GAYs1x2oYgQdHXHnmyYz3b08QSGsc2iAFAHkYJxrhxpTpmQ4c8QPfqoln9PvJzod3ks9TblWz%2ffyOq%2f9YNfrP947n78A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "1210707" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:21:38 GMT + - Tue, 05 Nov 2024 03:01:38 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 +2863,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14998" + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - b8f9fc3b-b7b5-40a7-808e-6126cb21fe5a + - 55d54d71-237b-465b-9c5c-8cd967a58528 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002139Z:b8f9fc3b-b7b5-40a7-808e-6126cb21fe5a + - WESTUS2:20241105T030138Z:55d54d71-237b-465b-9c5c-8cd967a58528 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: 455F6F3F29B14B29B5A1B67BDF6B76CF Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:34Z' + status: 200 OK + code: 200 + duration: 3.553736s + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1364,10 +2896,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJdb8IgFIZ%2fi1xrUmpdjHdtodmmB4SCi96Zzhlb0yazprTG%2fz7wIy673C52BYfzQp7zhBPKqrLelcd1vatKVRWb8oAmJ0TDVOnUd9tyY%2br5%2brPeucR006IJwr1xj6mlgW45QP1LQlbNvYe9cU8WSQRk2wi9IqBFwEgUSbInwlskoKnHVESEWsRMvX9IzPgs9RpOtM1lLSMaQ174jFAMSrcsxixNopXQB8O6qpWEDm3fMEUxJ9sBOvdvvP%2bF64PaBtBlrRVibrgCVGZ4%2fkrt2nKLCmTpgxhccOOQhSR0ktGkPO73ffRGnfBfDhD8xbf1GAYs1x2oYgQdHXHnmyYz3b08QSGsc2iAFAHkYJxrhxpTpmQ4c8QPfqoln9PvJzod3ks9TblWz%2ffyOq%2f9YNfrP947n78A method: GET response: proto: HTTP/2.0 @@ -1375,16 +2907,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 160391 uncompressed: false - body: "" + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "0" + - "160391" + Content-Type: + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:55 GMT + - Tue, 05 Nov 2024 03:01:39 GMT Expires: - "-1" Pragma: @@ -1396,19 +2930,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - cb6eea870424286b64fe30699884d2b3 + 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 + - c0160eff-0c35-4727-a7f3-6e5abe42a0b3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002256Z:b0825a2a-063b-4bd0-bc3b-62f2bc0ebc0e + - WESTUS2:20241105T030139Z:c0160eff-0c35-4727-a7f3-6e5abe42a0b3 X-Msedge-Ref: - - 'Ref A: DE0A11B2E13F4264B9289E8A61711C78 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:22:56Z' + - 'Ref A: E349062633114559BCE2BF16E21E4D57 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:38Z' status: 200 OK code: 200 - duration: 200.9496ms - - id: 21 + duration: 1.3772868s + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1422,17 +2958,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -1440,18 +2974,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:56 GMT + - Tue, 05 Nov 2024 03:01:40 GMT Expires: - "-1" Pragma: @@ -1463,68 +2997,62 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - bd7ab205-78bc-47a8-9b23-4f3b1654c3b8 + - 73a645e9-5c9e-40e2-8fec-bbd3df8decfc X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002256Z:bd7ab205-78bc-47a8-9b23-4f3b1654c3b8 + - WESTUS2:20241105T030140Z:73a645e9-5c9e-40e2-8fec-bbd3df8decfc X-Msedge-Ref: - - 'Ref A: 0450B48499784D80B189C6D66F8E3CA8 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:22:56Z' + - 'Ref A: 04342E7A7E41460BA62F8F4B2C7D8923 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:39Z' status: 200 OK code: 200 - duration: 396.347ms - - id: 22 + duration: 594.2006ms + - id: 44 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 12 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: '{"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" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:22:59 GMT + - Tue, 05 Nov 2024 03:01:40 GMT Expires: - "-1" Pragma: @@ -1536,62 +3064,68 @@ 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" + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 9fd158c9-db6f-4245-ad30-2d1d84e9f9b1 + - 4313f77f-6dea-4a77-a7b8-5e040dc103d0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002300Z:9fd158c9-db6f-4245-ad30-2d1d84e9f9b1 + - WESTUS2:20241105T030140Z:4313f77f-6dea-4a77-a7b8-5e040dc103d0 X-Msedge-Ref: - - 'Ref A: D2C5EEC1FA6D42578575118D1A622246 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:22:56Z' + - 'Ref A: 0D4DDAD306BC49E7B35847A50A985064 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:40Z' status: 200 OK code: 200 - duration: 3.3612061s - - id: 23 + duration: 391.9801ms + - id: 45 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 - method: GET + - cb6eea870424286b64fe30699884d2b3 + 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: 22 + content_length: 4787 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"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: - - "22" + - "4787" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:30 GMT + - Tue, 05 Nov 2024 03:01:40 GMT Expires: - "-1" Pragma: @@ -1603,60 +3137,66 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" X-Ms-Request-Id: - - 61465e0e-2a67-4968-9e35-89e6cf583668 + - 34c662b2-33f2-4479-9d98-b5f11711f199 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002330Z:61465e0e-2a67-4968-9e35-89e6cf583668 + - WESTUS2:20241105T030140Z:34c662b2-33f2-4479-9d98-b5f11711f199 X-Msedge-Ref: - - 'Ref A: 56D76B46B2BC40CD9194234FD502ABFD Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:30Z' + - 'Ref A: 534C39F22693480192C97D7B54850083 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:40Z' status: 200 OK code: 200 - duration: 376.3954ms - - id: 24 + duration: 57.9516ms + - id: 46 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-w618db2"},"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-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"}}' 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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: GET + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/validate?api-version=2021-04-01 + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 1959 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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:40Z"},"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":"cb6eea870424286b64fe30699884d2b3","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "1959" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:30 GMT + - Tue, 05 Nov 2024 03:01:42 GMT Expires: - "-1" Pragma: @@ -1668,30 +3208,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 222e2a0a5820a1f3dd163aa5dde6394d - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - c7eeaf15-dfc9-4200-aaea-eeedabf3d8d6 + - 98b5d58e-9373-47b1-b3fc-4c072ea76f2b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002330Z:c7eeaf15-dfc9-4200-aaea-eeedabf3d8d6 + - WESTUS2:20241105T030142Z:98b5d58e-9373-47b1-b3fc-4c072ea76f2b X-Msedge-Ref: - - 'Ref A: A261C2E64B854D8D9D47B4208AE26FAA Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:30Z' + - 'Ref A: A91F15A8373243BA9DF4A4792973161C Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:40Z' status: 200 OK code: 200 - duration: 373.1594ms - - id: 25 + duration: 2.2116502s + - id: 47 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-w618db2"},"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-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"}}' form: {} headers: Accept: @@ -1700,30 +3242,36 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4683" + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 1554 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: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:01:45.0948388Z","duration":"PT0.0001178S","correlationId":"cb6eea870424286b64fe30699884d2b3","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2-1730775430/operationStatuses/08584708311821215783?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "35367" + - "1554" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:35 GMT + - Tue, 05 Nov 2024 03:01:45 GMT Expires: - "-1" Pragma: @@ -1735,19 +3283,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Ratelimit-Remaining-Subscription-Reads: + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 3e91db70-030f-41be-9fc4-d68332c87342 + - 1af2178f-b538-4648-888a-cd5271b459be X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002335Z:3e91db70-030f-41be-9fc4-d68332c87342 + - WESTUS2:20241105T030145Z:1af2178f-b538-4648-888a-cd5271b459be X-Msedge-Ref: - - 'Ref A: 9A21845B67F14ADB8A207426EF5FC39B Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:33Z' + - 'Ref A: 49CAC6B7BF5E451EA91B00166998EE60 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:01:42Z' status: 200 OK code: 200 - duration: 2.2831288s - - id: 26 + duration: 2.6155134s + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1761,17 +3313,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/operationStatuses/08584708311821215783?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1779,18 +3329,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151508 + 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=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: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2151508" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:42 GMT + - Tue, 05 Nov 2024 03:02:16 GMT Expires: - "-1" Pragma: @@ -1802,19 +3352,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 33018a2d-7376-4818-b6ee-5db2f647baa0 + - 639650d0-4c6e-4b5a-aa9e-a08484760682 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002342Z:33018a2d-7376-4818-b6ee-5db2f647baa0 + - WESTUS2:20241105T030216Z:639650d0-4c6e-4b5a-aa9e-a08484760682 X-Msedge-Ref: - - 'Ref A: 751771D165E247BE9C48709DD2A15E18 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:35Z' + - 'Ref A: 7CA1D9BA63284ABD9E55367A3DFECC00 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:15Z' status: 200 OK code: 200 - duration: 6.9810721s - - id: 27 + duration: 331.7333ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1833,10 +3385,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1844,18 +3396,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 2482 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:02:12.4695764Z","duration":"PT27.3748554S","correlationId":"cb6eea870424286b64fe30699884d2b3","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "2482" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:44 GMT + - Tue, 05 Nov 2024 03:02:16 GMT Expires: - "-1" Pragma: @@ -1867,30 +3419,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - a32e21e0-d2c7-4b37-8d0c-43ab63a3c0de + - a7745236-f046-4dce-a7f4-c3b12bcc9706 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002344Z:a32e21e0-d2c7-4b37-8d0c-43ab63a3c0de + - WESTUS2:20241105T030216Z:a7745236-f046-4dce-a7f4-c3b12bcc9706 X-Msedge-Ref: - - 'Ref A: 27CC361BCD324C53A915B3A532666FFC Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:42Z' + - 'Ref A: 169ABB6CF0294FAB9A78BD99022EA584 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:16Z' status: 200 OK code: 200 - duration: 1.7032128s - - id: 28 + duration: 210.7246ms + - id: 50 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: @@ -1899,34 +3453,30 @@ interactions: - 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.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cb6eea870424286b64fe30699884d2b3 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w618db2%27&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: 396 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: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2","name":"rg-azdtest-w618db2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","DeleteAfter":"2024-11-05T04:01:43Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:44 GMT + - Tue, 05 Nov 2024 03:02:16 GMT Expires: - "-1" Pragma: @@ -1938,30 +3488,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 - X-Ms-Ratelimit-Remaining-Tenant-Writes: - - "1199" + - cb6eea870424286b64fe30699884d2b3 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - 38fbd8bc-ccb5-434b-a36f-3d40bc8c9c81 + - ce6fc0ac-18c8-46e1-a4df-0572901f8a4e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002344Z:38fbd8bc-ccb5-434b-a36f-3d40bc8c9c81 + - WESTUS2:20241105T030216Z:ce6fc0ac-18c8-46e1-a4df-0572901f8a4e X-Msedge-Ref: - - 'Ref A: 383C2D94668D4266ACFED2EBBD50258F Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:44Z' + - 'Ref A: 262277147F034CC6BDD1E29130471C43 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:16Z' status: 200 OK code: 200 - duration: 67.5615ms - - id: 29 + duration: 66.9817ms + - id: 51 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: @@ -1970,36 +3522,30 @@ 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + 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: 1554 + content_length: 1854614 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZFPb4JAEMU%2fi3vWZBFsqjdxl8TK7MIyQ6M3o1YFA0mL4Y%2fhuxfaeuix9jTz8t4kv5m5sV2eFefsui3OeYZ5esg%2b2OzGXmWEFI3ZLLteLkMm5z%2fyxrJDVQTb9%2bLcD6wONZsxa%2fA8ULiuoFmP2PArYfLy7lljZ2BSzwVxLEPaCKDQUcJ1jbiIkMcekOQKXRFivFC4fzOW0n7ESy2oy%2b0qhXNbo2yUAAeEtKG2yMSKdPIiYwlPkBqX%2bElGPK8g6XVYqQZKEKmjkWrW3vn7xf6Oz%2f%2bN76iEGsB0Ao2c6IWlIun51Cx%2foXboVY%2b6kArN3Kfofvv%2bFZKMDuRj%2fA5%2f%2fPy4tDTCBATZkKw5JEdbR9YqJOUTn%2brvF0wlNnltPHcTy1OASddLK8B0H%2fR%2bl3X7CsmuVsfRiLVt%2bwk%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430","location":"eastus2","name":"azdtest-w618db2-1730775430","properties":{"correlationId":"cb6eea870424286b64fe30699884d2b3","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2","resourceName":"rg-azdtest-w618db2","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT27.3748554S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}],"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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-11-05T04:01:43Z"},"environmentName":{"type":"String","value":"azdtest-w618db2"},"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-11-05T03:02:12.4695764Z"},"tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"type":"Microsoft.Resources/deployments"}]}' 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" + - "1854614" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:23:48 GMT + - Tue, 05 Nov 2024 03:02:29 GMT Expires: - "-1" Pragma: @@ -2011,21 +3557,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" + - dd113c426e8970ecf4779458811fa58d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" X-Ms-Request-Id: - - 5eb13a7c-abdb-4cfa-8b72-2d8752ffdb2e + - 8345d7d5-0789-44cd-b79c-3d789f75c2f3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002348Z:5eb13a7c-abdb-4cfa-8b72-2d8752ffdb2e + - WESTUS2:20241105T030228Z:8345d7d5-0789-44cd-b79c-3d789f75c2f3 X-Msedge-Ref: - - 'Ref A: 026C53524111481A9FC7CC365EBA364B Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:23:44Z' + - 'Ref A: 662A479B7CBC4DA78EC53176A74FF7BC Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:20Z' status: 200 OK code: 200 - duration: 3.8864914s - - id: 30 + duration: 8.3019989s + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2044,10 +3590,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFPb4JAEMU%2fi3vWZBFsqjdxl8TK7MIyQ6M3o1YFA0mL4Y%2fhuxfaeuix9jTz8t4kv5m5sV2eFefsui3OeYZ5esg%2b2OzGXmWEFI3ZLLteLkMm5z%2fyxrJDVQTb9%2bLcD6wONZsxa%2fA8ULiuoFmP2PArYfLy7lljZ2BSzwVxLEPaCKDQUcJ1jbiIkMcekOQKXRFivFC4fzOW0n7ESy2oy%2b0qhXNbo2yUAAeEtKG2yMSKdPIiYwlPkBqX%2bElGPK8g6XVYqQZKEKmjkWrW3vn7xf6Oz%2f%2bN76iEGsB0Ao2c6IWlIun51Cx%2foXboVY%2b6kArN3Kfofvv%2bFZKMDuRj%2fA5%2f%2fPy4tDTCBATZkKw5JEdbR9YqJOUTn%2brvF0wlNnltPHcTy1OASddLK8B0H%2fR%2bl3X7CsmuVsfRiLVt%2bwk%3d method: GET response: proto: HTTP/2.0 @@ -2055,18 +3601,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 1788297 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=xZHLboMwEEW%2fJV6DxCtSxQ5iR22TsbE9TpXuIkojAjJSS0RIxL83lLDpD3Q3996zONLcSN7YtrTnQ1s2FpuqsN8kvhGWaDQ6GE9bXNrs8NWWI7EpehITf%2fG04Li%2fwHXvEueXUE03b74XLVS1ToEeO2neKRgZcZqmitZUers1GOZxTKnE3Yrjx6fyudhqrxPU3Lm8B0wCjiyAK4sEZSFon2u2zMTplQHmvUDTAYVASNclg%2fNw%2fTdVQXOf0ySC00sE%2fV9VuRRYhfw4qb4xjcwokTES23NdO2RsjA7naDZaGHye47Te3zDBK8ZRJVujp2IYfgA%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "1788297" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:49 GMT + - Tue, 05 Nov 2024 03:02:34 GMT Expires: - "-1" Pragma: @@ -2078,19 +3624,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - dd113c426e8970ecf4779458811fa58d + 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 + - 285db030-bf87-4124-a2c2-ba87cbb96ce2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002449Z:8848cffd-9573-4e68-844d-747874b4b5d5 + - WESTUS2:20241105T030234Z:285db030-bf87-4124-a2c2-ba87cbb96ce2 X-Msedge-Ref: - - 'Ref A: E5FFF29D71FE4DC9B1B8890CC3A5010A Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:49Z' + - 'Ref A: 45E7F401F1004CD6815D90BE76979F02 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:29Z' status: 200 OK code: 200 - duration: 335.8837ms - - id: 31 + duration: 5.391003s + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2109,10 +3657,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHLboMwEEW%2fJV6DxCtSxQ5iR22TsbE9TpXuIkojAjJSS0RIxL83lLDpD3Q3996zONLcSN7YtrTnQ1s2FpuqsN8kvhGWaDQ6GE9bXNrs8NWWI7EpehITf%2fG04Li%2fwHXvEueXUE03b74XLVS1ToEeO2neKRgZcZqmitZUers1GOZxTKnE3Yrjx6fyudhqrxPU3Lm8B0wCjiyAK4sEZSFon2u2zMTplQHmvUDTAYVASNclg%2fNw%2fTdVQXOf0ySC00sE%2fV9VuRRYhfw4qb4xjcwokTES23NdO2RsjA7naDZaGHye47Te3zDBK8ZRJVujp2IYfgA%3d method: GET response: proto: HTTP/2.0 @@ -2120,18 +3668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2482 + content_length: 1210707 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=xZJdb8IgFIZ%2fi1xrUmpdjHdtodmmB4SCi96Zzhlb0yazprTG%2fz7wIy673C52BYfzQp7zhBPKqrLelcd1vatKVRWb8oAmJ0TDVOnUd9tyY%2br5%2brPeucR006IJwr1xj6mlgW45QP1LQlbNvYe9cU8WSQRk2wi9IqBFwEgUSbInwlskoKnHVESEWsRMvX9IzPgs9RpOtM1lLSMaQ174jFAMSrcsxixNopXQB8O6qpWEDm3fMEUxJ9sBOvdvvP%2bF64PaBtBlrRVibrgCVGZ4%2fkrt2nKLCmTpgxhccOOQhSR0ktGkPO73ffRGnfBfDhD8xbf1GAYs1x2oYgQdHXHnmyYz3b08QSGsc2iAFAHkYJxrhxpTpmQ4c8QPfqoln9PvJzod3ks9TblWz%2ffyOq%2f9YNfrP947n78A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2482" + - "1210707" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:49 GMT + - Tue, 05 Nov 2024 03:02:38 GMT Expires: - "-1" Pragma: @@ -2143,19 +3691,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - dd113c426e8970ecf4779458811fa58d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 83b07ecd-7f83-42e7-b60e-1af0d33e8c20 + - 7d9f8568-c8b1-4cb5-a716-b3bb2fd22665 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002450Z:83b07ecd-7f83-42e7-b60e-1af0d33e8c20 + - WESTUS2:20241105T030238Z:7d9f8568-c8b1-4cb5-a716-b3bb2fd22665 X-Msedge-Ref: - - 'Ref A: FA65FEB750144E13B7AAB8DC0E3C08B5 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:49Z' + - 'Ref A: CBD78568BFA34EDBAE0D9AB873BE9653 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:34Z' status: 200 OK code: 200 - duration: 383.441ms - - id: 32 + duration: 3.9153697s + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2169,17 +3719,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJdb8IgFIZ%2fi1xrUmpdjHdtodmmB4SCi96Zzhlb0yazprTG%2fz7wIy673C52BYfzQp7zhBPKqrLelcd1vatKVRWb8oAmJ0TDVOnUd9tyY%2br5%2brPeucR006IJwr1xj6mlgW45QP1LQlbNvYe9cU8WSQRk2wi9IqBFwEgUSbInwlskoKnHVESEWsRMvX9IzPgs9RpOtM1lLSMaQ174jFAMSrcsxixNopXQB8O6qpWEDm3fMEUxJ9sBOvdvvP%2bF64PaBtBlrRVibrgCVGZ4%2fkrt2nKLCmTpgxhccOOQhSR0ktGkPO73ffRGnfBfDhD8xbf1GAYs1x2oYgQdHXHnmyYz3b08QSGsc2iAFAHkYJxrhxpTpmQ4c8QPfqoln9PvJzod3ks9TblWz%2ffyOq%2f9YNfrP947n78A method: GET response: proto: HTTP/2.0 @@ -2187,18 +3735,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 396 + content_length: 160391 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=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "396" + - "160391" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:49 GMT + - Tue, 05 Nov 2024 03:02:40 GMT Expires: - "-1" Pragma: @@ -2210,19 +3758,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a50cf7ca8e14bc8d9fbc20d192e1b041 + - dd113c426e8970ecf4779458811fa58d + 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 + - b10f7856-32c1-4d7c-b654-bc4e4e7ff9c9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002450Z:899b415c-3cc4-44ac-8f67-d9d173582b18 + - WESTUS2:20241105T030240Z:b10f7856-32c1-4d7c-b654-bc4e4e7ff9c9 X-Msedge-Ref: - - 'Ref A: 3A1CC6148C974D1687C216255EAB9D08 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:50Z' + - 'Ref A: 17155832B1AD4D0086EBA636ACB9A20C Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:38Z' status: 200 OK code: 200 - duration: 118.0316ms - - id: 33 + duration: 1.5325052s + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2236,17 +3786,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4IwFIV%2fC32GBBSThbdCS7ZpW2hvXdybYcwgpCQbBpnxv29Va5bt8Zz73Zt7zglVvRkac9gOTW%2bgb2vziZIToliBVjOUmEPX%2bTfp1Au1Q4uZ%2bjgU24%2bhsdvLekIJirwHj8PmyL42AfIvhOxHN4vC2JNtnjKyG0v9SpguY07SVJKOlOE6Z5qGHFJSwjrj8PYuIy5WKhwF0T9cNTHAM0GqiBMcs%2f1TzKaIK7ooxP6ZMqgmAeVCQDvnuyBAZx%2flEvOMZpSDxCv3vxIaHm%2bezXHNmGGOCbbBnWNz%2fsOsSbUUBf2NaTV3Ui8v9528lnVv8s%2b98%2fkb method: GET response: proto: HTTP/2.0 @@ -2254,18 +3802,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151446 + content_length: 5320 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2151446" + - "5320" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:24:59 GMT + - Tue, 05 Nov 2024 03:02:41 GMT Expires: - "-1" Pragma: @@ -2277,19 +3825,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 192f5689-29e8-4cf4-990e-99d0e5dcba3c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002500Z:4cc0e286-0411-4034-bf91-53e58643183b + - WESTUS2:20241105T030241Z:192f5689-29e8-4cf4-990e-99d0e5dcba3c X-Msedge-Ref: - - 'Ref A: FE5F8F781450402DB226F843E6828ED6 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:24:52Z' + - 'Ref A: F1A30E16505149B9884B538435106A34 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:40Z' status: 200 OK code: 200 - duration: 7.6582142s - - id: 34 + duration: 759.3258ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2308,10 +3858,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -2319,18 +3869,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:01 GMT + - Tue, 05 Nov 2024 03:02:41 GMT Expires: - "-1" Pragma: @@ -2342,19 +3892,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 654f9bed-5286-4a81-b147-9ea54e58cd80 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002502Z:663240aa-f05e-4e98-aef3-f8ce6d837117 + - WESTUS2:20241105T030241Z:654f9bed-5286-4a81-b147-9ea54e58cd80 X-Msedge-Ref: - - 'Ref A: D120C3BE53F741BF939C7C62EA1AC322 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:00Z' + - 'Ref A: 9A9AD757AA9445D08EF9947BC7531931 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:41Z' status: 200 OK code: 200 - duration: 1.8340948s - - id: 35 + duration: 395.5073ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2375,10 +3927,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2388,7 +3940,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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:02:12.4695764Z","duration":"PT27.3748554S","correlationId":"cb6eea870424286b64fe30699884d2b3","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache @@ -2397,7 +3949,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:01 GMT + - Tue, 05 Nov 2024 03:02:41 GMT Expires: - "-1" Pragma: @@ -2409,19 +3961,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 4e75ae0b-ffc0-4625-9584-b2728c407c4e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002502Z:55a198c0-9684-4688-841a-3e74c062fc8f + - WESTUS2:20241105T030242Z:4e75ae0b-ffc0-4625-9584-b2728c407c4e X-Msedge-Ref: - - 'Ref A: 60F492D68AF24DA9B7A65CF993714360 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:02Z' + - 'Ref A: CD5BC0A150B542DF81EBCB62FB588912 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:41Z' status: 200 OK code: 200 - duration: 353.989ms - - id: 36 + duration: 380.7667ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2442,10 +3996,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w618db2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2455,7 +4009,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-w618db2","name":"rg-azdtest-w618db2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","DeleteAfter":"2024-11-05T04:01:43Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2464,7 +4018,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:01 GMT + - Tue, 05 Nov 2024 03:02:42 GMT Expires: - "-1" Pragma: @@ -2476,19 +4030,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 09a5c273-0627-4644-a769-9e3759624133 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002502Z:ac5b60b5-3912-4fc2-ae6c-ee4e4afbeda2 + - WESTUS2:20241105T030242Z:09a5c273-0627-4644-a769-9e3759624133 X-Msedge-Ref: - - 'Ref A: 1E48E9DCDA474297912DB4C8055855AC Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:02Z' + - 'Ref A: 293D943C086748E09FBA4DEB6B3BC3D5 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:42Z' status: 200 OK code: 200 - duration: 97.6736ms - - id: 37 + duration: 46.7576ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2509,10 +4065,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2522,7 +4078,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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk","name":"st4ebtsu6vhz7fk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2"}}]}' headers: Cache-Control: - no-cache @@ -2531,7 +4087,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:02 GMT + - Tue, 05 Nov 2024 03:02:42 GMT Expires: - "-1" Pragma: @@ -2543,19 +4099,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - cd4d7bb0-fe33-4596-9658-f78a3f4a7d7a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002503Z:401b0d39-41f6-49fe-b385-8b90b700e273 + - WESTUS2:20241105T030242Z:cd4d7bb0-fe33-4596-9658-f78a3f4a7d7a X-Msedge-Ref: - - 'Ref A: F11415F5DB1A418FAFEA32A248EE2F35 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:02Z' + - 'Ref A: 0D038B8B29D24DB0A065643B657819BF Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:42Z' status: 200 OK code: 200 - duration: 627.4732ms - - id: 38 + duration: 178.2551ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2576,10 +4134,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2589,7 +4147,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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:02:12.4695764Z","duration":"PT27.3748554S","correlationId":"cb6eea870424286b64fe30699884d2b3","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache @@ -2598,7 +4156,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:02 GMT + - Tue, 05 Nov 2024 03:02:42 GMT Expires: - "-1" Pragma: @@ -2610,19 +4168,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 31669036-e762-4ec3-8dab-015226135d5a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002503Z:5324015e-ca1c-49c3-81b2-01a6c7092004 + - WESTUS2:20241105T030242Z:31669036-e762-4ec3-8dab-015226135d5a X-Msedge-Ref: - - 'Ref A: A69D4425B05C41A98AB1B088FE5F018A Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:03Z' + - 'Ref A: 68A0B6E5CF9C4EE1A85E9994BEBD67BC Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:42Z' status: 200 OK code: 200 - duration: 378.2731ms - - id: 39 + duration: 186.9717ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2643,10 +4203,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w618db2%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2656,7 +4216,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-w618db2","name":"rg-azdtest-w618db2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","DeleteAfter":"2024-11-05T04:01:43Z","IntTag":"678","BoolTag":"False","SecureTag":"","SecureObjectTag":"{}"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2665,7 +4225,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:03 GMT + - Tue, 05 Nov 2024 03:02:42 GMT Expires: - "-1" Pragma: @@ -2677,19 +4237,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - b98ccbf7-d66a-4653-a363-cf6e7beb142c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002503Z:ff609a14-20c8-4f94-a3a1-43ab3d0fea8f + - WESTUS2:20241105T030242Z:b98ccbf7-d66a-4653-a363-cf6e7beb142c X-Msedge-Ref: - - 'Ref A: 96EBDEA2A44F4DEEB1ADFE72D7D1B634 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:03Z' + - 'Ref A: 64873F907638492CA73FE75D07BDAFD1 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:42Z' status: 200 OK code: 200 - duration: 105.3785ms - - id: 40 + duration: 64.0578ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2710,10 +4272,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2723,7 +4285,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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk","name":"st4ebtsu6vhz7fk","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2"}}]}' headers: Cache-Control: - no-cache @@ -2732,7 +4294,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:25:04 GMT + - Tue, 05 Nov 2024 03:02:42 GMT Expires: - "-1" Pragma: @@ -2744,19 +4306,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1098" X-Ms-Request-Id: - - 50a90eb7-4621-4738-9090-ac90501530e6 + - a8102296-8d7d-4f09-b18c-5e429d2d7e86 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002504Z:50a90eb7-4621-4738-9090-ac90501530e6 + - WESTUS2:20241105T030242Z:a8102296-8d7d-4f09-b18c-5e429d2d7e86 X-Msedge-Ref: - - 'Ref A: 1043FAA0E07545F5AF2600C69F6B4A5B Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:03Z' + - 'Ref A: 6B9C426644AD41FEAA9DE810B30B1C10 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:42Z' status: 200 OK code: 200 - duration: 1.0942722s - - id: 41 + duration: 209.9205ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2777,10 +4341,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w618db2?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -2797,11 +4361,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:25:06 GMT + - Tue, 05 Nov 2024 03:02:44 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNjE4REIyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663726258629773&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=hk5fn4YDt0WEKSjSCAm2p4RZCMsJ57F5K_tZyL1itbBLuthN_WAKWbbqqeCpSEHtcM8cS57UDRdH0d2RUfG4eflPQhellkcLHmnqX9A54aCV7ZviXrSjfKLAjXjrYOyQau6YefMQDOKT2MHUR_WIZAPG1L-Gl1O7Vn4vhTyPMn7P8yAc0qtj9UtsHu4kKMiXhS_cMso5Rk_8hfkk1s8v-3ymrnQpL17iDwBVGvO1vFUxZyqT5GnAi4Jyfwfn7jlsI6w3NUH9x-7CPzS3upRbPhaRALmQ4DBoEY7clztyNJV01RiWAmu2aQY-YiiSvTF4XB7-0TNGlhDdKRVfuXuZGg&h=tI7IHWPTyH0IEvHwZcivnqyPEEvVoHMoKjzSOLzYpIE Pragma: - no-cache Retry-After: @@ -2813,19 +4377,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d 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 + - aa306cd0-1ff1-4a82-99b2-e50519dd6932 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002507Z:65af53cb-bd9a-43dd-9229-2117066956a0 + - WESTUS2:20241105T030244Z:aa306cd0-1ff1-4a82-99b2-e50519dd6932 X-Msedge-Ref: - - 'Ref A: 1181B6F1C1AC4F39957A86D12C352EE2 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:25:04Z' + - 'Ref A: 11CF763F3FF04EE19116A5E659AA4E92 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:02:42Z' status: 202 Accepted code: 202 - duration: 2.1295817s - - id: 42 + duration: 1.3708915s + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2844,10 +4410,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNjE4REIyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663726258629773&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=hk5fn4YDt0WEKSjSCAm2p4RZCMsJ57F5K_tZyL1itbBLuthN_WAKWbbqqeCpSEHtcM8cS57UDRdH0d2RUfG4eflPQhellkcLHmnqX9A54aCV7ZviXrSjfKLAjXjrYOyQau6YefMQDOKT2MHUR_WIZAPG1L-Gl1O7Vn4vhTyPMn7P8yAc0qtj9UtsHu4kKMiXhS_cMso5Rk_8hfkk1s8v-3ymrnQpL17iDwBVGvO1vFUxZyqT5GnAi4Jyfwfn7jlsI6w3NUH9x-7CPzS3upRbPhaRALmQ4DBoEY7clztyNJV01RiWAmu2aQY-YiiSvTF4XB7-0TNGlhDdKRVfuXuZGg&h=tI7IHWPTyH0IEvHwZcivnqyPEEvVoHMoKjzSOLzYpIE method: GET response: proto: HTTP/2.0 @@ -2864,7 +4430,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:27:09 GMT + - Tue, 05 Nov 2024 03:04:01 GMT Expires: - "-1" Pragma: @@ -2876,19 +4442,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - b9a9425e-f01f-4571-a0b9-58b1e1ce6041 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002709Z:a9d090f1-ac1e-4895-b3d6-1940efc9aa6a + - WESTUS2:20241105T030401Z:b9a9425e-f01f-4571-a0b9-58b1e1ce6041 X-Msedge-Ref: - - 'Ref A: C691405A6F844EF5BEBF943026A951AC Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:09Z' + - 'Ref A: FE028BDFDF6C4E71A4FBEF00240271BD Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:04:00Z' status: 200 OK code: 200 - duration: 265.5986ms - - id: 43 + duration: 462.1239ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2909,10 +4477,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2922,7 +4490,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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w618db2","azd-provision-param-hash":"31ed59422b2ac4cae8bdef4825a4fd077188fe557ad34c1f3c051d7880c36497"},"properties":{"templateHash":"6845266579015915401","parameters":{"environmentName":{"type":"String","value":"azdtest-w618db2"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:01:43Z"},"intTagValue":{"type":"Int","value":678},"boolTagValue":{"type":"Bool","value":false},"secureValue":{"type":"SecureString"},"secureObject":{"type":"SecureObject"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:02:12.4695764Z","duration":"PT27.3748554S","correlationId":"cb6eea870424286b64fe30699884d2b3","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-w618db2","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w618db2"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/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-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"},"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"st4ebtsu6vhz7fk"},"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-w618db2"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w618db2/providers/Microsoft.Storage/storageAccounts/st4ebtsu6vhz7fk"}]}}' headers: Cache-Control: - no-cache @@ -2931,7 +4499,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:09 GMT + - Tue, 05 Nov 2024 03:04:01 GMT Expires: - "-1" Pragma: @@ -2943,19 +4511,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 3a72ad6b-5d00-4a8c-85ec-0c142eadf383 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002710Z:65258f0b-e15d-4c6c-8e68-71e08aa227c7 + - WESTUS2:20241105T030401Z:3a72ad6b-5d00-4a8c-85ec-0c142eadf383 X-Msedge-Ref: - - 'Ref A: 639B60CCB6614D00A30E682C3ACA663D Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:09Z' + - 'Ref A: 4E9D8B9F360844F88FDEE9C3BEC225E1 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:04:01Z' status: 200 OK code: 200 - duration: 382.6437ms - - id: 44 + duration: 252.8273ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2966,7 +4536,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-w618db2"}}' form: {} headers: Accept: @@ -2980,10 +4550,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2991,20 +4561,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 569 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w618db2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:04:03.334392Z","duration":"PT0.0003812S","correlationId":"dd113c426e8970ecf4779458811fa58d","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-w618db2-1730775430/operationStatuses/08584708310434509797?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "570" + - "569" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:12 GMT + - Tue, 05 Nov 2024 03:04:03 GMT Expires: - "-1" Pragma: @@ -3016,21 +4586,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.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 + - b4517d4f-5d71-4372-b9ab-88b70f54e663 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002712Z:e454d122-a379-4548-9ae5-02c07daf61a9 + - WESTUS2:20241105T030403Z:b4517d4f-5d71-4372-b9ab-88b70f54e663 X-Msedge-Ref: - - 'Ref A: F6967CACF3E44DEFA06837F4ADB6D6CD Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:10Z' + - 'Ref A: 93BE835FBA4C49C4AFFFCD96146B8F06 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:04:01Z' status: 200 OK code: 200 - duration: 2.5812311s - - id: 45 + duration: 2.2206145s + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3049,10 +4621,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430/operationStatuses/08584708310434509797?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3071,7 +4643,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:42 GMT + - Tue, 05 Nov 2024 03:04:34 GMT Expires: - "-1" Pragma: @@ -3083,19 +4655,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + 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 + - 9298ba25-fbc4-42a9-82db-75d3d945c63d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002743Z:a0d79a67-30b1-4d76-9da1-0f51058c3102 + - WESTUS2:20241105T030434Z:9298ba25-fbc4-42a9-82db-75d3d945c63d X-Msedge-Ref: - - 'Ref A: CB85DD968F0744909C89AD16CFDCB812 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:43Z' + - 'Ref A: 9B9E679F8DA843E7AB0E02F473A11A17 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:04:34Z' status: 200 OK code: 200 - duration: 368.8474ms - - id: 46 + duration: 195.8274ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3114,10 +4688,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - dd113c426e8970ecf4779458811fa58d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w618db2-1730775430?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3125,18 +4699,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 603 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-w618db2-1730775430","name":"azdtest-w618db2-1730775430","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w618db2"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:04:06.2961408Z","duration":"PT2.96213S","correlationId":"dd113c426e8970ecf4779458811fa58d","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache Content-Length: - - "604" + - "603" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:27:43 GMT + - Tue, 05 Nov 2024 03:04:34 GMT Expires: - "-1" Pragma: @@ -3148,19 +4722,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f81c9faab1609d7375b3bc9f980432f9 + - dd113c426e8970ecf4779458811fa58d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1098" X-Ms-Request-Id: - - 71f6292f-8db2-4009-b563-52b4abff7f23 + - a0d1c673-e587-4dd0-af0b-a19951ccdf24 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002744Z:71f6292f-8db2-4009-b563-52b4abff7f23 + - WESTUS2:20241105T030434Z:a0d1c673-e587-4dd0-af0b-a19951ccdf24 X-Msedge-Ref: - - 'Ref A: 8A2A1099D1C049F899299515A954A513 Ref B: CO6AA3150220029 Ref C: 2024-08-23T00:27:43Z' + - 'Ref A: F1C04A2463924857ABF559646DEDEA36 Ref B: CO6AA3150217033 Ref C: 2024-11-05T03:04:34Z' status: 200 OK code: 200 - duration: 380.3514ms + duration: 226.7016ms --- -env_name: azdtest-w4e3a08 +env_name: azdtest-w618db2 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372388" +time: "1730775430" 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..e92803ce111 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 + - crhppqpnqio3zhy.azurecr.io exitCode: 0 stdout: | Login Succeeded @@ -15,28 +15,28 @@ interactions: - id: 1 args: - push - - crsf5eumltrz36q.azurecr.io/containerapp/web-azdtest-w962778:azd-deploy-1724378473 + - crhppqpnqio3zhy.azurecr.io/containerapp/web-azdtest-w8fae78:azd-deploy-1730776024 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 [crhppqpnqio3zhy.azurecr.io/containerapp/web-azdtest-w8fae78] + b5e97fa6565f: Preparing + 70577ded96cb: Preparing + e6ffb4bfae03: Preparing + a82429eb8d3e: Preparing + 869ab4bfb259: Preparing + 63b82d419b18: Preparing + a990240cee6d: Preparing + 98b5f35ea9d3: Preparing + 63b82d419b18: Waiting + a990240cee6d: Waiting + 98b5f35ea9d3: Waiting + 70577ded96cb: Pushed + b5e97fa6565f: Pushed + a82429eb8d3e: Pushed + 63b82d419b18: Pushed + 869ab4bfb259: Pushed + a990240cee6d: Pushed + e6ffb4bfae03: Pushed + 98b5f35ea9d3: Pushed + azd-deploy-1730776024: digest: sha256:ce8636f07b9d7412a5d8bc10bd46a9c84116828e902d8a65102796f7da0782e3 size: 1995 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..1f6ba211733 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:26 GMT + - Tue, 05 Nov 2024 03:07:24 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - 9e2b7e12-92c1-478a-8f81-59064fe7e961 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020126Z:d8767f44-7757-4f05-a0a4-6d8d083815b6 + - WESTUS2:20241105T030724Z:9e2b7e12-92c1-478a-8f81-59064fe7e961 X-Msedge-Ref: - - 'Ref A: 4D152407B12F43B48D867F21ABD9343F Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:23Z' + - 'Ref A: 362A841C98A745B99F9936B6543BE9BE Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:21Z' status: 200 OK code: 200 - duration: 2.8189855s + duration: 2.8105206s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w8fae78%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 + - Tue, 05 Nov 2024 03:07:24 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - 1a385df3-0e4b-44bc-a46f-0c05fb984d43 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020126Z:a78f3aef-b532-4614-bb1b-2e778a33eab1 + - WESTUS2:20241105T030724Z:1a385df3-0e4b-44bc-a46f-0c05fb984d43 X-Msedge-Ref: - - 'Ref A: FE70D1A436454DE0819DF79B5DE8013C Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:26Z' + - 'Ref A: 5A0C5DE496934863A479CC84E9A2D263 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:24Z' status: 200 OK code: 200 - duration: 98.7209ms + duration: 58.2735ms - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a 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: 36065 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/viva-rg-dos","name":"viva-rg-dos","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"11/06/2024 00:26:24"},"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/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhan","name":"rg-kashifkhan","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"11/10/2024 23:19: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-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/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-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-24T20:29:43.5161316Z","Owners":"ripark","ServiceDirectory":"messaging/eventgrid/aznamespaces","DoNotDelete":"Service team has setup special things on this resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-24T20:29:53.5675114Z","Owners":"ripark","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-11-24T20:30:01.92764Z","Owners":"ripark","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-poi","name":"anuchan-poi","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/20/2024 19:14:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-05T16:36:12.7311142Z","Owners":"swathip","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test","name":"rg-jairmyreetables-cosmos-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-05T19:49:12.1924511Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test-2","name":"rg-jairmyreetables-cosmos-test-2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-06T17:17:29.5664455Z"},"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","ServiceDirectory":"eventhub","DeleteAfter":"2024-11-06T00:29:30.4170476Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingplaywrighttesting","name":"rg-mreddingplaywrighttesting","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"mredding","DeleteAfter":"2024-11-06T15:14:57.5037519Z","ServiceDirectory":"playwrighttesting"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test-arm-template","name":"rg-jairmyreetables-cosmos-test-arm-template","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-06T17:25:43.0098562Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventgrid","name":"rg-llawrenceeventgrid","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventgrid","Owners":"llawrence","DeleteAfter":"2024-11-06T17:27:36.9085537Z"},"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","Owners":"llawrence","DeleteAfter":"2024-11-06T21:13:38.3123790Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-06T23:43:29.0216958Z","Owners":"larryo","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingservicebus","name":"rg-mreddingservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-14T20:33:47.6321168+00:00","Owners":"mredding","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-gearamatables","name":"rg-gearamatables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-09T22:05:22.0269094Z","ServiceDirectory":"tables","Owners":"gearama"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-yallappconfigtests","name":"rg-yallappconfigtests","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-10T00:50:00.3584357Z","Owners":"yall","ServiceDirectory":"appconfiguration"},"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/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-scbedd","name":"rg-scbedd","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"11/12/2024 03:24:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/connieyeh-false-processor-java-eventhubs-1","name":"connieyeh-false-processor-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","DeleteAfter":"2024-11-11T20:38:36.2081778Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/connieyeh-true-processor-java-eventhubs-1","name":"connieyeh-true-processor-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2024-11-11T20:38:37.0108639Z","BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkova-6122_ai","name":"rg-limolkova-6122_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"11/15/2024 00:26:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg64178","name":"javacsmrg64178","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/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-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","tags":{"azd-env-name":"dev","tag1":"val","tag2":"val"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/abc-app6-dev-rg","name":"abc-app6-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","tags":{"azd-env-name":"dev","tag1":"val","tag2":"val"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-aks-1","name":"rg-hemarina-aks-1","type":"Microsoft.Resources/resourceGroups","location":"australiacentral","tags":{"azd-env-name":"hemarina-aks-1","DeleteAfter":"11/10/2024 23:19:07"},"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/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-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-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-jstest","name":"yumeng-jstest","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/07/2024 23:16:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-hooligans","name":"rg-wabrez-hooligans","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/10/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-remote-test-1","name":"rg-hemarina-remote-test-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-remote-test-1","DeleteAfter":"11/10/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-dev","name":"rg-weilim-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"weilim-dev","DeleteAfter":"11/11/2024 23:20:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-aspire-empty","name":"rg-matell-aspire-empty","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-aspire-empty","DeleteAfter":"11/11/2024 23:20:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua1","name":"rg-shihua1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua1","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 04:53:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-py","name":"rg-tomenv11-4-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-py","DeleteAfter":"11/05/2024 08:42:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-shop1","name":"rg-tomenv11-4-shop1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-shop1","DeleteAfter":"11/05/2024 08:42:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-vscode-shop","name":"rg-tomenv11-4-vscode-shop","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-vscode-shop","DeleteAfter":"11/05/2024 08:42:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua5","name":"rg-shihua5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua5","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 08:42:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-stand","name":"rg-tomenv11-4-stand","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-stand","DeleteAfter":"11/05/2024 08:42:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua6","name":"rg-shihua6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua6","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 12:25:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-kv-general","name":"vivazqu-kv-general","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fff","DeleteAfter":"11/15/2024 00:26:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkovaai","name":"rg-limolkovaai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/06/2024 00:26:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-hoolis","name":"rg-wabrez-hoolis","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-azd-1","name":"rg-jinlong-azd-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-azd-1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-5-a","name":"rg-tomenv11-5-a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-5-a"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zimu","name":"rg-zimu","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zimu"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zedy-test-1105","name":"rg-zedy-test-1105","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zedy-test-1105"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rg-test-tc-asdjhk422","name":"rg-rg-test-tc-asdjhk422","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"rg-test-tc-asdjhk422"},"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/cm55304278066c492","name":"cm55304278066c492","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/23/2025 19:15:42","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llaw","name":"rg-llaw","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"ServiceDirectory":"eventgrid","Owners":"llawrence","DeleteAfter":"2024-11-06T17:38:05.4263918Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/05/2024 12:25:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mreddingtest","name":"mreddingtest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/06/2024 00:26:26"},"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" + - "36065" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:26 GMT + - Tue, 05 Nov 2024 03:07:24 GMT Expires: - "-1" Pragma: @@ -190,18 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - 602955de-90b2-43a6-be35-ec7659ee9870 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020126Z:7a39384f-f9cf-4850-8fdf-fee413d21e0f + - WESTUS2:20241105T030724Z:602955de-90b2-43a6-be35-ec7659ee9870 X-Msedge-Ref: - - 'Ref A: 20DA1C8D73894922BF010B0C60F6C2C9 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:26Z' + - 'Ref A: 1BF2B770709042868A5328F1946D689F Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:24Z' status: 200 OK code: 200 - duration: 70.3858ms + duration: 81.3658ms - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a 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: 1860935 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=xZHNbsIwEISfBZ9BsklaFW4YG4mStRNnnSrcENBAghKpDcoPyrs3acupPfXS0%2b5qZqVvNDeyL%2fLynF935bnIsciO%2bTuZ38iLDNGGUzLPr5fLmMjF93kj%2bbEu%2fd1beR4eNseGzAkbPY0UxjW08YSMPx2mqO4am7ojk604iKQK7FaADVwlODfiIgIarcBKqpCLAKOlwsOrYUp7Ia20sL1vXytcOBplqwS4IKQDDbMmUlanzzKS8AiZ4ZaeZEiLGtLhDmrVQgUiczXahnR3%2fiHYf%2bD32AkDXLeA8a%2f4Rp68MEt%2b4Ks2mQ74S6nQLDwb3vsY6pHWaF%2f%2bLZNL%2f14JrplGeABhHUhjCmni6JBtAqs8S2f6q5aZxLZozIpvI3nyMe13yXzMDv6g914%2bTEj3jUomE9J13Qc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2134656" + - "1860935" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:33 GMT + - Tue, 05 Nov 2024 03:07:31 GMT Expires: - "-1" Pragma: @@ -257,18 +263,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - fcca64e0-d0e7-4629-aac0-45d4ff4e8374 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020133Z:7e70170d-3685-480c-832f-26255c0cb138 + - WESTUS2:20241105T030731Z:fcca64e0-d0e7-4629-aac0-45d4ff4e8374 X-Msedge-Ref: - - 'Ref A: B57E6783B95342828DB7ED53FC5964CB Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:26Z' + - 'Ref A: 14EFD389A2EE4ECA860D142E944322A9 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:24Z' status: 200 OK code: 200 - duration: 7.0060745s + duration: 7.0295237s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHNbsIwEISfBZ9BsklaFW4YG4mStRNnnSrcENBAghKpDcoPyrs3acupPfXS0%2b5qZqVvNDeyL%2fLynF935bnIsciO%2bTuZ38iLDNGGUzLPr5fLmMjF93kj%2bbEu%2fd1beR4eNseGzAkbPY0UxjW08YSMPx2mqO4am7ojk604iKQK7FaADVwlODfiIgIarcBKqpCLAKOlwsOrYUp7Ia20sL1vXytcOBplqwS4IKQDDbMmUlanzzKS8AiZ4ZaeZEiLGtLhDmrVQgUiczXahnR3%2fiHYf%2bD32AkDXLeA8a%2f4Rp68MEt%2b4Ks2mQ74S6nQLDwb3vsY6pHWaF%2f%2bLZNL%2f14JrplGeABhHUhjCmni6JBtAqs8S2f6q5aZxLZozIpvI3nyMe13yXzMDv6g914%2bTEj3jUomE9J13Qc%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1788299 + 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=xZHNToNAFIWfhVlDwp%2bJYTd0plHpnQHmTk3dNYgGIYNRGgoN726RsvAJ3N1zzrf4knshRWu6ypyOXdUabOvSfJPoQjhVqJU%2fn6Y8d%2bnxq6tmIikHEhHPurcEHs4wHhxi%2fxJ526%2bb54ZWXm9jYO99pl8Y6CwULI5z1rDM3W9Bc1dgzDLcbwS%2bvuWekDvl9pLpK1cMgNQXyH0YeSgZD0B5QvG7VH48ccBikKh7YODLzHHIZN9c%2f01VskcXxjqAkYYwzKqfyV9VOki6qD5zhVznMuUkMqemscncaBWsUSdKanxY47Je37DAGy4wpzutlmKafgA%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1788299" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - cead1430a78009474e737c75dc4a080a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 9204cbf0-2c41-4382-9397-a7cb8a64b932 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030735Z:9204cbf0-2c41-4382-9397-a7cb8a64b932 + X-Msedge-Ref: + - 'Ref A: 34C505EE3D604CDDA932C6B3A77F20DC Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:31Z' + status: 200 OK + code: 200 + duration: 3.8968995s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHNToNAFIWfhVlDwp%2bJYTd0plHpnQHmTk3dNYgGIYNRGgoN726RsvAJ3N1zzrf4knshRWu6ypyOXdUabOvSfJPoQjhVqJU%2fn6Y8d%2bnxq6tmIikHEhHPurcEHs4wHhxi%2fxJ526%2bb54ZWXm9jYO99pl8Y6CwULI5z1rDM3W9Bc1dgzDLcbwS%2bvuWekDvl9pLpK1cMgNQXyH0YeSgZD0B5QvG7VH48ccBikKh7YODLzHHIZN9c%2f01VskcXxjqAkYYwzKqfyV9VOki6qD5zhVznMuUkMqemscncaBWsUSdKanxY47Je37DAGy4wpzutlmKafgA%3d method: GET response: proto: HTTP/2.0 @@ -299,18 +374,219 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353776 + content_length: 1210749 + 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=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1210749" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - cead1430a78009474e737c75dc4a080a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 44f4e2c6-d328-4e6f-8649-78dfa2ca8f17 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030739Z:44f4e2c6-d328-4e6f-8649-78dfa2ca8f17 + X-Msedge-Ref: + - 'Ref A: C28BED1003A94811A2A0CEAADFDDC542 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:36Z' + status: 200 OK + code: 200 + duration: 3.5844485s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 160397 + 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=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "160397" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - cead1430a78009474e737c75dc4a080a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 49766527-9c65-4432-a801-b78a8df3771d + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030741Z:49766527-9c65-4432-a801-b78a8df3771d + X-Msedge-Ref: + - 'Ref A: 138ACC03F456441287DF442405A9C354 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:39Z' + status: 200 OK + code: 200 + duration: 1.2696505s + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5320 + 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5320" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - cead1430a78009474e737c75dc4a080a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 0ffb0f14-f7d7-4601-9d0e-65f591236179 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030741Z:0ffb0f14-f7d7-4601-9d0e-65f591236179 + X-Msedge-Ref: + - 'Ref A: B310B1A6B06547569566FA09A95A4796 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:41Z' + status: 200 OK + code: 200 + duration: 629.583ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d + 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: - - "353776" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:01:35 GMT + - Tue, 05 Nov 2024 03:07:42 GMT Expires: - "-1" Pragma: @@ -322,19 +598,94 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - f8495372-95f5-499e-9930-cb36fcebc32c + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030742Z:f8495372-95f5-499e-9930-cb36fcebc32c + X-Msedge-Ref: + - 'Ref A: AE6C8A5843834264BBF403972F639B30 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:41Z' + status: 200 OK + code: 200 + duration: 413.7298ms + - id: 9 + 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-w8fae78"},"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-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"}}' + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024/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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:42Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"cead1430a78009474e737c75dc4a080a","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-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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-w8fae78/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/web"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "3143" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07:43 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - cead1430a78009474e737c75dc4a080a + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 99759183-4028-416d-819d-4121b6777f70 + - 3397b6d2-dcf6-4260-a31b-b3b3efc22631 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020135Z:99759183-4028-416d-819d-4121b6777f70 + - WESTUS2:20241105T030743Z:3397b6d2-dcf6-4260-a31b-b3b3efc22631 X-Msedge-Ref: - - 'Ref A: 41A04A4F5C9C479780651F6EB8DE460F Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:33Z' + - 'Ref A: 2AB7593FE5264A2B8C31F52557AECB59 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:42Z' status: 200 OK code: 200 - duration: 1.9859267s - - id: 5 + duration: 1.707824s + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -345,7 +696,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-w8fae78"},"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-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"}}' form: {} headers: Accept: @@ -359,10 +710,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -370,20 +721,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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:44Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:07:45.8679502Z","duration":"PT0.0006085S","correlationId":"cead1430a78009474e737c75dc4a080a","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-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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-w8fae78/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-w8fae78-1730776024/operationStatuses/08584708308213004264?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 + - Tue, 05 Nov 2024 03:07:46 GMT Expires: - "-1" Pragma: @@ -395,21 +746,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.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 + - ec6713a2-3601-41a7-aa23-76e00acc881e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020139Z:364d1b7b-a732-49ce-980d-d88fc6d2dd42 + - WESTUS2:20241105T030747Z:ec6713a2-3601-41a7-aa23-76e00acc881e X-Msedge-Ref: - - 'Ref A: 4A3A537F26224E399C02C00AC8530322 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:01:36Z' + - 'Ref A: 08EA20AA35D1415FB81C4C097C7A874A Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:07:43Z' status: 201 Created code: 201 - duration: 3.2924228s - - id: 6 + duration: 3.192445s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -428,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024/operationStatuses/08584708308213004264?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -450,7 +803,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:40 GMT + - Tue, 05 Nov 2024 03:09:18 GMT Expires: - "-1" Pragma: @@ -462,19 +815,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - b2b83365-c725-4d4c-b5b2-0db8f1a090f1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020341Z:4a2022e2-09f0-4f0d-b5b8-74c6482e955b + - WESTUS2:20241105T030918Z:b2b83365-c725-4d4c-b5b2-0db8f1a090f1 X-Msedge-Ref: - - 'Ref A: EE4B95DA9C9A4859BDD41F8B974ABB85 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:40Z' + - 'Ref A: D9E5A145CB7446C98E73C583ABF8B614 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:09:18Z' status: 200 OK code: 200 - duration: 214.339ms - - id: 7 + duration: 437.1357ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -493,10 +848,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -504,18 +859,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3396 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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:09:07.6310809Z","duration":"PT1M21.7637392S","correlationId":"cead1430a78009474e737c75dc4a080a","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-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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-w8fae78/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crhppqpnqio3zhy"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-hppqpnqio3zhy"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crhppqpnqio3zhy.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:40 GMT + - Tue, 05 Nov 2024 03:09:18 GMT Expires: - "-1" Pragma: @@ -527,19 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - 297089ca-2193-4b96-8f9e-71b5dc058d48 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020341Z:3630018f-e646-4862-a142-555294146883 + - WESTUS2:20241105T030918Z:297089ca-2193-4b96-8f9e-71b5dc058d48 X-Msedge-Ref: - - 'Ref A: 3F38230DFA2E4A30951255A052913A9B Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:41Z' + - 'Ref A: 7E873D236FD24CC2B5E87DF4F2445C00 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:09:18Z' status: 200 OK code: 200 - duration: 369.801ms - - id: 8 + duration: 224.81ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -560,10 +917,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - cead1430a78009474e737c75dc4a080a + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w8fae78%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -573,7 +930,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-w8fae78","name":"rg-azdtest-w8fae78","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","DeleteAfter":"2024-11-05T04:07:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -582,7 +939,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:42 GMT + - Tue, 05 Nov 2024 03:09:21 GMT Expires: - "-1" Pragma: @@ -594,19 +951,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cae59d248bac9c54b6bbaa7a290662c9 + - cead1430a78009474e737c75dc4a080a + 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 + - ef31918e-8d87-4a97-9477-a486fa5fc9c9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020343Z:f06702e0-99c9-49e4-bd56-bb7de108d037 + - WESTUS2:20241105T030921Z:ef31918e-8d87-4a97-9477-a486fa5fc9c9 X-Msedge-Ref: - - 'Ref A: CDD80173A84C425EAFCB48CE66056347 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:42Z' + - 'Ref A: C0D0EAB6B64D4C33B34C1C859C7D2862 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:09:21Z' status: 200 OK code: 200 - duration: 54.29ms - - id: 9 + duration: 87.9206ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -627,10 +986,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w8fae78%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -640,7 +999,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-w8fae78","name":"rg-azdtest-w8fae78","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","DeleteAfter":"2024-11-05T04:07:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -649,7 +1008,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:48 GMT + - Tue, 05 Nov 2024 03:09:52 GMT Expires: - "-1" Pragma: @@ -661,19 +1020,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - d2e73061-3ce6-4aa6-8a89-05b98889ad68 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020348Z:a323955e-3dca-492f-8ffb-a226b7cffff5 + - WESTUS2:20241105T030952Z:d2e73061-3ce6-4aa6-8a89-05b98889ad68 X-Msedge-Ref: - - 'Ref A: 862CB0124E114754BAD10D65D7A6B09D Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:48Z' + - 'Ref A: 84945DF9E327483EB6E3178FFC0F0F65 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:09:52Z' status: 200 OK code: 200 - duration: 63.3009ms - - id: 10 + duration: 84.2393ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -694,10 +1055,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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 +1068,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-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy","name":"ca-hppqpnqio3zhy","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"}}]}' headers: Cache-Control: - no-cache @@ -716,7 +1077,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:48 GMT + - Tue, 05 Nov 2024 03:09:52 GMT Expires: - "-1" Pragma: @@ -728,19 +1089,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - 07e5d83f-0f3a-46e6-9465-da91044c63f1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020349Z:1fafd18b-63af-4260-80de-06d20c85b9a1 + - WESTUS2:20241105T030952Z:07e5d83f-0f3a-46e6-9465-da91044c63f1 X-Msedge-Ref: - - 'Ref A: B9BF3747ADCE430DBDA521B49CC85E93 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:03:48Z' + - 'Ref A: E270C3061DCF4CDEA7FF09DF7DA81762 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:09:52Z' status: 200 OK code: 200 - duration: 669.7682ms - - id: 11 + duration: 327.4106ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -749,17 +1112,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: crsf5eumltrz36q.azurecr.io + host: crhppqpnqio3zhy.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=crhppqpnqio3zhy.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - crsf5eumltrz36q.azurecr.io + - crhppqpnqio3zhy.azurecr.io headers: Accept-Encoding: - gzip @@ -768,10 +1131,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 - url: https://crsf5eumltrz36q.azurecr.io:443/oauth2/exchange + - 710724b8c3515c580e614fe082b8c326 + url: https://crhppqpnqio3zhy.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -789,19 +1152,19 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:03:50 GMT + - Tue, 05 Nov 2024 03:09:53 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 X-Ms-Ratelimit-Remaining-Calls-Per-Second: - "166.65" status: 200 OK code: 200 - duration: 541.9201ms - - id: 12 + duration: 411.647ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -822,10 +1185,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -833,20 +1196,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2544 + content_length: 2545 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-w8fae78/providers/Microsoft.App/containerapps/ca-hppqpnqio3zhy","name":"ca-hppqpnqio3zhy","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:49.8682433","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:08:49.8682433"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","workloadProfileName":null,"outboundIpAddresses":["48.211.251.193"],"latestRevisionName":"ca-hppqpnqio3zhy--f6b4lj7","latestReadyRevisionName":"ca-hppqpnqio3zhy--f6b4lj7","latestRevisionFqdn":"ca-hppqpnqio3zhy--f6b4lj7.lemonsky-5f9cc839.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-hppqpnqio3zhy.lemonsky-5f9cc839.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":"crhppqpnqio3zhy.azurecr.io","username":"crhppqpnqio3zhy","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-w8fae78/containerApps/ca-hppqpnqio3zhy/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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "2544" + - "2545" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:35 GMT + - Tue, 05 Nov 2024 03:10:04 GMT Expires: - "-1" Pragma: @@ -860,21 +1223,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - d2229232-4457-43dc-a381-6c1a6ed4ee89 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020436Z:fd5543ec-9e0e-4628-9399-beca8b8a4566 + - WESTUS2:20241105T031005Z:d2229232-4457-43dc-a381-6c1a6ed4ee89 X-Msedge-Ref: - - 'Ref A: 81E825F8ADD74A62AC715EC8BBF17FD7 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:35Z' + - 'Ref A: 35B2645189744E0A93761C3885359D86 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:04Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 686.3932ms - - id: 13 + duration: 495.3975ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -895,10 +1260,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy/revisions/ca-hppqpnqio3zhy--f6b4lj7?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -906,20 +1271,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 916 + content_length: 914 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-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy/revisions/ca-hppqpnqio3zhy--f6b4lj7","name":"ca-hppqpnqio3zhy--f6b4lj7","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2024-11-05T03:08:57+00:00","fqdn":"ca-hppqpnqio3zhy--f6b4lj7.lemonsky-5f9cc839.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."}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "916" + - "914" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:36 GMT + - Tue, 05 Nov 2024 03:10:05 GMT Expires: - "-1" Pragma: @@ -933,21 +1298,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - 02cc6d78-2fda-408d-86ac-615cafd63ad6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020437Z:29a67455-27cd-4f1d-bfbd-1f4ba5ff506c + - WESTUS2:20241105T031005Z:02cc6d78-2fda-408d-86ac-615cafd63ad6 X-Msedge-Ref: - - 'Ref A: A3A66CEA3A0A413E93CCD092AC124955 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:36Z' + - 'Ref A: 61E378B1D8ED46BCBE230CB1DBF5C2B2 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:05Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 881.267ms - - id: 14 + duration: 942.1151ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -970,10 +1337,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy/listSecrets?api-version=2023-11-02-preview method: POST response: proto: HTTP/2.0 @@ -986,7 +1353,7 @@ interactions: body: '{"value":[{"name":"registry-password","value":""}]}' headers: Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -994,7 +1361,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:36 GMT + - Tue, 05 Nov 2024 03:10:06 GMT Expires: - "-1" Pragma: @@ -1008,32 +1375,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - 4713e109-58bc-42d0-be12-305bfe183cf3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020437Z:bd088f52-971e-41e8-9cc9-376471f35c93 + - WESTUS2:20241105T031006Z:4713e109-58bc-42d0-be12-305bfe183cf3 X-Msedge-Ref: - - 'Ref A: 58F6485A0FFF4804B366574DFA1DCE44 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:37Z' + - 'Ref A: 59F2D87CBB4F4396B91AABD8E080C2CE Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:05Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 545.313ms - - id: 15 + duration: 635.6654ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2270 + content_length: 2271 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-w8fae78/providers/Microsoft.App/containerapps/ca-hppqpnqio3zhy","identity":{"type":"None"},"location":"East US 2","name":"ca-hppqpnqio3zhy","properties":{"configuration":{"activeRevisionsMode":"Single","ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io","targetPort":3100,"traffic":[{"latestRevision":true,"weight":100}],"transport":"Auto"},"maxInactiveRevisions":100,"registries":[{"identity":"","passwordSecretRef":"registry-password","server":"crhppqpnqio3zhy.azurecr.io","username":"crhppqpnqio3zhy"}],"secrets":[{"name":"registry-password","value":"SANITIZED"}]},"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/containerApps/ca-hppqpnqio3zhy/eventstream","latestReadyRevisionName":"ca-hppqpnqio3zhy--f6b4lj7","latestRevisionFqdn":"ca-hppqpnqio3zhy--f6b4lj7.lemonsky-5f9cc839.eastus2.azurecontainerapps.io","latestRevisionName":"ca-hppqpnqio3zhy--f6b4lj7","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","outboundIpAddresses":["48.211.251.193"],"provisioningState":"Succeeded","template":{"containers":[{"image":"crhppqpnqio3zhy.azurecr.io/containerapp/web-azdtest-w8fae78:azd-deploy-1730776024","name":"main","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1730776024","scale":{"maxReplicas":10}}},"systemData":{"createdAt":"2024-11-05T03:08:49.8682433Z","createdBy":"hemarina@microsoft.com","createdByType":"User","lastModifiedAt":"2024-11-05T03:08:49.8682433Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"},"type":"Microsoft.App/containerApps"}' form: {} headers: Accept: @@ -1043,14 +1412,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "2270" + - "2271" 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy?api-version=2023-11-02-preview method: PATCH response: proto: HTTP/2.0 @@ -1063,19 +1432,19 @@ interactions: body: "" headers: Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview 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/8897b3dd-1d2f-4f46-ba89-d3ee12e950c3?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638663730078815076&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=w0BiZfQrClldsp95Z_iOvtnCidFxonF2PNFOoejW6W565_npyT2So91m1sh9K0EJLEneQ8GiBQ9vjK3ulYGnQvcm2BjX983rGAuRvVRZkBchBYYe3bIv9WB-nCZA6s9fy5kPgbYR6F90zuLx4CpineJXjLc7f9g9C3GlV560VJZbGTTW3tvgZtMvSpGzaCZFZENrRn5UlhYuzZjRlEvFWlRfYpkzaia4MYj7HEGybcNAQMXqJtNFS7GiJyDFupJ8kbYW8CwPBIuUFdvD0UlWO4WCA6aVywGl-NA88D_xG-RnVZGr04AtgycB_jKcBkFGErHdkDQhkB3unhS2kJNFtA&h=_rNS_EGZpI8wltciPBlaAFqM9hSSpTlxdRdXjWJXTco Cache-Control: - no-cache Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:04:38 GMT + - Tue, 05 Nov 2024 03:10:07 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/8897b3dd-1d2f-4f46-ba89-d3ee12e950c3?api-version=2023-11-02-preview&t=638663730078971337&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=AsilVmfLyRNAnIOZBhuFcGJgY5UIcJnxqpVUpPhUyCo0TzfW6gVOpZ4I-1LAQSoccSvRCWNUkG9bvQSvS8HyzjutBagIp4FMC2FlsKzf2WZhSsJuVT4aUcuHSecuEoM47td8brqcUb7IvlqiU6E5G57xAFHT1P6Mr5XmBLChX08H18SKZxc4UckHzdz1gCa1VYPND5_xShOTCeEOCpwVLaSPk23HkV_vSYyXCZaiN-CqcKlgD5WjwMqGFrgTmpEnZbqCMoQ5FLwqI7Ou6tVzgi4vmQzrw09cZPL_TpiLzjkqHSIp6WMQx4eDbeOwngxppW4LbDQMSQVZbhx7B917aw&h=8gP6Gyg59f95WiWkvL-awraDeXeLro9E2Mqk_A_coLw Pragma: - no-cache Retry-After: @@ -1087,21 +1456,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - cef47401-ca3c-4184-ad1d-9394d7a19974 + - f4456a0a-cf48-4254-94d8-acc579e11c98 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020439Z:cef47401-ca3c-4184-ad1d-9394d7a19974 + - WESTUS2:20241105T031007Z:f4456a0a-cf48-4254-94d8-acc579e11c98 X-Msedge-Ref: - - 'Ref A: F2FD197DFA134F8AB4B4E1227E080FB4 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:37Z' + - 'Ref A: 6119BF70D26C4E99A7D2406BA6DF4E04 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:06Z' X-Powered-By: - ASP.NET status: 202 Accepted code: 202 - duration: 2.0008004s - - id: 16 + duration: 1.273853s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1120,10 +1489,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/8897b3dd-1d2f-4f46-ba89-d3ee12e950c3?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638663730078815076&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=w0BiZfQrClldsp95Z_iOvtnCidFxonF2PNFOoejW6W565_npyT2So91m1sh9K0EJLEneQ8GiBQ9vjK3ulYGnQvcm2BjX983rGAuRvVRZkBchBYYe3bIv9WB-nCZA6s9fy5kPgbYR6F90zuLx4CpineJXjLc7f9g9C3GlV560VJZbGTTW3tvgZtMvSpGzaCZFZENrRn5UlhYuzZjRlEvFWlRfYpkzaia4MYj7HEGybcNAQMXqJtNFS7GiJyDFupJ8kbYW8CwPBIuUFdvD0UlWO4WCA6aVywGl-NA88D_xG-RnVZGr04AtgycB_jKcBkFGErHdkDQhkB3unhS2kJNFtA&h=_rNS_EGZpI8wltciPBlaAFqM9hSSpTlxdRdXjWJXTco method: GET response: proto: HTTP/2.0 @@ -1133,10 +1502,10 @@ 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/8897b3dd-1d2f-4f46-ba89-d3ee12e950c3","name":"8897b3dd-1d2f-4f46-ba89-d3ee12e950c3","status":"Succeeded","startTime":"2024-11-05T03:10:07.7911024"}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -1144,7 +1513,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:54 GMT + - Tue, 05 Nov 2024 03:10:23 GMT Expires: - "-1" Pragma: @@ -1158,21 +1527,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - fb7af2fa-65f0-4e53-be44-db7163efa968 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020454Z:a5ed1f74-7342-4b2c-b589-ffe39568c6a1 + - WESTUS2:20241105T031023Z:fb7af2fa-65f0-4e53-be44-db7163efa968 X-Msedge-Ref: - - 'Ref A: 384D85DF53BA4E1B85C9CDFECA40B5DE Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:54Z' + - 'Ref A: A5524D0F939643DA8C4C19978807AD27 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:22Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 345.5196ms - - id: 17 + duration: 298.3144ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1191,10 +1562,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1202,20 +1573,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2653 + content_length: 2654 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-w8fae78/providers/Microsoft.App/containerapps/ca-hppqpnqio3zhy","name":"ca-hppqpnqio3zhy","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:49.8682433","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:10:07.5065035"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","workloadProfileName":null,"outboundIpAddresses":["48.211.251.193"],"latestRevisionName":"ca-hppqpnqio3zhy--azd-1730776024","latestReadyRevisionName":"ca-hppqpnqio3zhy--f6b4lj7","latestRevisionFqdn":"ca-hppqpnqio3zhy--azd-1730776024.lemonsky-5f9cc839.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-hppqpnqio3zhy.lemonsky-5f9cc839.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":"crhppqpnqio3zhy.azurecr.io","username":"crhppqpnqio3zhy","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1730776024","terminationGracePeriodSeconds":null,"containers":[{"image":"crhppqpnqio3zhy.azurecr.io/containerapp/web-azdtest-w8fae78:azd-deploy-1730776024","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-w8fae78/containerApps/ca-hppqpnqio3zhy/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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "2653" + - "2654" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:54 GMT + - Tue, 05 Nov 2024 03:10:23 GMT Expires: - "-1" Pragma: @@ -1229,21 +1600,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - 640fcbd6-9f8a-439b-8504-f426aa58f700 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020455Z:cace416f-915a-4250-92a2-9ebabff852ac + - WESTUS2:20241105T031023Z:640fcbd6-9f8a-439b-8504-f426aa58f700 X-Msedge-Ref: - - 'Ref A: 92925AD41ED148EC8BE7D630F8A6F1A6 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:54Z' + - 'Ref A: 49A8433BA06A49329EF177E21E4DB459 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:23Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 647.7999ms - - id: 18 + duration: 492.8723ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1264,10 +1637,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1275,20 +1648,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2653 + content_length: 2661 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-w8fae78/providers/Microsoft.App/containerapps/ca-hppqpnqio3zhy","name":"ca-hppqpnqio3zhy","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:49.8682433","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:10:07.5065035"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","workloadProfileName":null,"outboundIpAddresses":["48.211.251.193"],"latestRevisionName":"ca-hppqpnqio3zhy--azd-1730776024","latestReadyRevisionName":"ca-hppqpnqio3zhy--azd-1730776024","latestRevisionFqdn":"ca-hppqpnqio3zhy--azd-1730776024.lemonsky-5f9cc839.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"registry-password"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"ca-hppqpnqio3zhy.lemonsky-5f9cc839.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":"crhppqpnqio3zhy.azurecr.io","username":"crhppqpnqio3zhy","passwordSecretRef":"registry-password","identity":""}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1730776024","terminationGracePeriodSeconds":null,"containers":[{"image":"crhppqpnqio3zhy.azurecr.io/containerapp/web-azdtest-w8fae78:azd-deploy-1730776024","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-w8fae78/containerApps/ca-hppqpnqio3zhy/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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "2653" + - "2661" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:55 GMT + - Tue, 05 Nov 2024 03:10:24 GMT Expires: - "-1" Pragma: @@ -1302,21 +1675,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - 02cdf2eb-a5a4-4d1f-be9d-3cfa97ac9cdd X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020456Z:5b91f866-dbc7-48bd-9b01-bd7c98c730bc + - WESTUS2:20241105T031024Z:02cdf2eb-a5a4-4d1f-be9d-3cfa97ac9cdd X-Msedge-Ref: - - 'Ref A: AF3715892D37472B96B874C377FF5664 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:55Z' + - 'Ref A: 7EFF2887F23741E1BF31C76873AE16DD Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:23Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 562.4114ms - - id: 19 + duration: 473.1088ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1337,10 +1712,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 710724b8c3515c580e614fe082b8c326 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w8fae78%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1350,7 +1725,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-w8fae78","name":"rg-azdtest-w8fae78","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","DeleteAfter":"2024-11-05T04:07:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1359,7 +1734,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:04:55 GMT + - Tue, 05 Nov 2024 03:10:24 GMT Expires: - "-1" Pragma: @@ -1371,19 +1746,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07f7bd6359acc32f495ff9ca567d5711 + - 710724b8c3515c580e614fe082b8c326 + 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 + - 49441eea-2c2a-4ebb-8b7b-4aca7f1a3b7b X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020456Z:6325e7f5-4be5-41bf-ae5f-26d4e77a04c7 + - WESTUS2:20241105T031024Z:49441eea-2c2a-4ebb-8b7b-4aca7f1a3b7b X-Msedge-Ref: - - 'Ref A: CD64E1AFF12543E38E6B73DF0C1B8061 Ref B: CO6AA3150220027 Ref C: 2024-08-23T02:04:56Z' + - 'Ref A: DF865C90321A49F2983193BAECC67402 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:24Z' status: 200 OK code: 200 - duration: 79.0044ms - - id: 20 + duration: 60.1773ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1391,7 +1768,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io + host: ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io remote_addr: "" request_uri: "" body: "" @@ -1403,7 +1780,52 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://ca-sf5eumltrz36q.greenstone-0ed91530.eastus2.azurecontainerapps.io:443/ + url: https://ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io:443/ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: Hello, `azd`. + headers: + Content-Type: + - text/plain; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:10:24 GMT + Server: + - Kestrel + status: 200 OK + code: 200 + duration: 337.6263ms + - 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.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - f71a36dbe65fb47f0c27682a9444cc81 + 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 @@ -1411,20 +1833,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 1853184 uncompressed: false - body: stream timeout + body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=pZFPb4JAEMU%2fi3vWhBVoqjdw18TK7MIyS4M3oxYBA0mL4Y%2fhuxfaml56qqeZybzJ%2fF7ejRzKokqL675KywLL%2fFR8kOWNvPIQdTgny%2bJ6uUwJd37GGylOTeXv36t0PNieWrIkdPI8ERg30MUzMv1SqLK%2b7%2bjcmKh87QJL6kDvGOjAEsx1FbuwwIjWoLkh0GUBRiuBxzdFhfRCo5ZMD7pDI9AxJTq2yGA%2bfLEhpVpFQsvshUccniBXruLnbWjwoQ8a0UENLLckapv0d%2fbR1D%2fQrUfRrcE2Bdx0gLEJ7Z%2foXpgnDWSjlV980SXzEX%2fFBSrH0%2bE9izEarpX0%2bf88WQ%2fEgRsqEWxg2oQsNiBLTBnSbaCFp42F%2fI5kwbErW7V2dxE%2f%2b5gNPac%2b5kd%2f3A9ad6yQHVqRzGak7%2ftP","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024","location":"eastus2","name":"azdtest-w8fae78-1730776024","properties":{"correlationId":"cead1430a78009474e737c75dc4a080a","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceName":"rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceName":"rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/web","resourceName":"web","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT1M21.7637392S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy"}],"outputs":{"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-hppqpnqio3zhy"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crhppqpnqio3zhy.azurecr.io"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crhppqpnqio3zhy"},"websitE_URL":{"type":"String","value":"https://ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:44Z"},"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"5362782710926720725","timestamp":"2024-11-05T03:09:07.6310809Z"},"tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"type":"Microsoft.Resources/deployments"}]}' headers: + Cache-Control: + - no-cache Content-Length: - - "14" + - "1853184" 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, 05 Nov 2024 03:10: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: + - f71a36dbe65fb47f0c27682a9444cc81 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - 98576291-80d4-4de6-8d31-dc3929dc0607 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031036Z:98576291-80d4-4de6-8d31-dc3929dc0607 + X-Msedge-Ref: + - 'Ref A: F8F31DC5F4104D87A70E64137D12D8CE Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:28Z' + status: 200 OK + code: 200 + duration: 8.173167s + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1432,7 +1878,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 +1889,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZFPb4JAEMU%2fi3vWhBVoqjdw18TK7MIyS4M3oxYBA0mL4Y%2fhuxfaml56qqeZybzJ%2fF7ejRzKokqL675KywLL%2fFR8kOWNvPIQdTgny%2bJ6uUwJd37GGylOTeXv36t0PNieWrIkdPI8ERg30MUzMv1SqLK%2b7%2bjcmKh87QJL6kDvGOjAEsx1FbuwwIjWoLkh0GUBRiuBxzdFhfRCo5ZMD7pDI9AxJTq2yGA%2bfLEhpVpFQsvshUccniBXruLnbWjwoQ8a0UENLLckapv0d%2fbR1D%2fQrUfRrcE2Bdx0gLEJ7Z%2foXpgnDWSjlV980SXzEX%2fFBSrH0%2bE9izEarpX0%2bf88WQ%2fEgRsqEWxg2oQsNiBLTBnSbaCFp42F%2fI5kwbErW7V2dxE%2f%2b5gNPac%2b5kd%2f3A9ad6yQHVqRzGak7%2ftP method: GET response: proto: HTTP/2.0 @@ -1452,20 +1900,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 + content_length: 1802259 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=xZHbaoNAEIafxb02oNFC8U6zK03N7Mbd2ZT0LlhbjKKlNZg1%2bO71kDxDr2b%2bA8wHcyNZU7dFfTm1RVNjU%2bb1LwluhIUKtVpPa51f2%2f3ppy2mRpIbEhDXerY4Hq%2fQH1fEnhuy6R6Z6%2fiWLOMI6FeX6ncKOvU5jSJJK5o6hxg0czhGNMXDhuPHp3S52CmnE1SPvcwAhmvowyegWzPPjctVHKWAjZGUeXAuXaChy6frg31n%2fTdUQbcO9KU3ovpgRlT2nYjzKwPMjEDdjahGhKsZ9Y0pZFqKPSNBfakqm0yOVt5D6kQJjS8PuaTjG5byhnGU4U6rxRiGPw%3d%3d","value":[]}' headers: + Cache-Control: + - no-cache + Content-Length: + - "1802259" Content-Type: - - text/plain; charset=utf-8 + - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:08:56 GMT - Server: - - Kestrel + - Tue, 05 Nov 2024 03:10: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: + - f71a36dbe65fb47f0c27682a9444cc81 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 728df338-da0f-405f-b32b-853e30ea8909 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031041Z:728df338-da0f-405f-b32b-853e30ea8909 + X-Msedge-Ref: + - 'Ref A: 4ABFEE9C8EC24B0C9E7E4C0073E11F61 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:36Z' status: 200 OK code: 200 - duration: 181.7952ms - - id: 22 + duration: 4.6243535s + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1479,17 +1951,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHbaoNAEIafxb02oNFC8U6zK03N7Mbd2ZT0LlhbjKKlNZg1%2bO71kDxDr2b%2bA8wHcyNZU7dFfTm1RVNjU%2bb1LwluhIUKtVpPa51f2%2f3ppy2mRpIbEhDXerY4Hq%2fQH1fEnhuy6R6Z6%2fiWLOMI6FeX6ncKOvU5jSJJK5o6hxg0czhGNMXDhuPHp3S52CmnE1SPvcwAhmvowyegWzPPjctVHKWAjZGUeXAuXaChy6frg31n%2fTdUQbcO9KU3ovpgRlT2nYjzKwPMjEDdjahGhKsZ9Y0pZFqKPSNBfakqm0yOVt5D6kQJjS8PuaTjG5byhnGU4U6rxRiGPw%3d%3d method: GET response: proto: HTTP/2.0 @@ -1497,18 +1967,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2132437 + content_length: 1210749 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=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2132437" + - "1210749" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:06 GMT + - Tue, 05 Nov 2024 03:10:45 GMT Expires: - "-1" Pragma: @@ -1520,19 +1990,155 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - fb669cd4-9f01-4c8a-b8df-2d82ab3cc112 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020906Z:492b7bd2-8957-49f2-86cf-2cd3e6b039ef + - WESTUS2:20241105T031045Z:fb669cd4-9f01-4c8a-b8df-2d82ab3cc112 X-Msedge-Ref: - - 'Ref A: 6CACE91577AC48D08A53231F8651123A Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:08:59Z' + - 'Ref A: 70E1DD65FBF3451CA64881912F4AD995 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:41Z' status: 200 OK code: 200 - duration: 6.7250248s - - id: 23 + duration: 3.6010288s + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 160397 + 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=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "160397" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:10: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: + - f71a36dbe65fb47f0c27682a9444cc81 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b4a5500d-d3e7-47f5-bd73-d5aba3eb5bea + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031047Z:b4a5500d-d3e7-47f5-bd73-d5aba3eb5bea + X-Msedge-Ref: + - 'Ref A: CBDFD37CDE904DC68BE6B7C8DEDDFDF7 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:45Z' + status: 200 OK + code: 200 + duration: 1.6104262s + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5320 + 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5320" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:10:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - f71a36dbe65fb47f0c27682a9444cc81 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 977f8b06-a1e4-4775-9d36-180b6583ca36 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031047Z:977f8b06-a1e4-4775-9d36-180b6583ca36 + X-Msedge-Ref: + - 'Ref A: DC99E938F37A4E42A8B0D805B8470CD8 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:47Z' + status: 200 OK + code: 200 + duration: 477.6566ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1551,10 +2157,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -1562,18 +2168,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376732 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "376732" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:08 GMT + - Tue, 05 Nov 2024 03:10:47 GMT Expires: - "-1" Pragma: @@ -1585,19 +2191,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - 349d2aa7-7cde-4ee9-91a0-301d4607e913 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020908Z:274feb36-937b-42bc-a1e9-349129e2046d + - WESTUS2:20241105T031048Z:349d2aa7-7cde-4ee9-91a0-301d4607e913 X-Msedge-Ref: - - 'Ref A: A7EF0E448F9A48CEB66F5C7065AC7948 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:06Z' + - 'Ref A: A03BC092A2B043BBB358CB288176C645 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:47Z' status: 200 OK code: 200 - duration: 1.7962151s - - id: 24 + duration: 502.0918ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1618,10 +2226,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1629,18 +2237,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3396 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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:09:07.6310809Z","duration":"PT1M21.7637392S","correlationId":"cead1430a78009474e737c75dc4a080a","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-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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-w8fae78/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crhppqpnqio3zhy"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-hppqpnqio3zhy"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crhppqpnqio3zhy.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:08 GMT + - Tue, 05 Nov 2024 03:10:48 GMT Expires: - "-1" Pragma: @@ -1652,19 +2260,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - b00e6ab6-949d-4233-b7fa-90d3509cb531 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020908Z:64a2f2bf-c1c8-4acf-a381-f5c12b68ae73 + - WESTUS2:20241105T031048Z:b00e6ab6-949d-4233-b7fa-90d3509cb531 X-Msedge-Ref: - - 'Ref A: C9E055FCFBE342DD99C2A021CAE4CD5B Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:08Z' + - 'Ref A: 66B0EDBBB97A463DB7DB365152B08451 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:48Z' status: 200 OK code: 200 - duration: 383.6543ms - - id: 25 + duration: 364.8975ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1685,10 +2295,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w8fae78%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1698,7 +2308,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-w8fae78","name":"rg-azdtest-w8fae78","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","DeleteAfter":"2024-11-05T04:07:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1707,7 +2317,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:08 GMT + - Tue, 05 Nov 2024 03:10:48 GMT Expires: - "-1" Pragma: @@ -1719,19 +2329,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - e1f5cce4-0ac0-4069-a21f-1279356db427 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020908Z:799c7976-870d-4cd3-b795-cf9648b27da0 + - WESTUS2:20241105T031048Z:e1f5cce4-0ac0-4069-a21f-1279356db427 X-Msedge-Ref: - - 'Ref A: C91E8B5F0B024AB39BE96C2FF649C135 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:08Z' + - 'Ref A: 44BA087F7CBF499BA738104B6FDAB1CA Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:48Z' status: 200 OK code: 200 - duration: 103.9116ms - - id: 26 + duration: 76.3763ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1752,10 +2364,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1763,18 +2375,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1963 + content_length: 1973 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-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy","name":"log-hppqpnqio3zhy","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy","name":"crhppqpnqio3zhy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:07:51.878676Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:07:51.878676Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","name":"cae-hppqpnqio3zhy","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:08.8744149Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:08:08.8744149Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy","name":"ca-hppqpnqio3zhy","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:49.8682433Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:10:07.5065035Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1963" + - "1973" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:09 GMT + - Tue, 05 Nov 2024 03:10:48 GMT Expires: - "-1" Pragma: @@ -1786,19 +2398,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - 16140b82-25a5-4f51-be6b-70d95e5f9ef5 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020909Z:84e89190-bac7-4f36-bce1-3f394b1235a9 + - WESTUS2:20241105T031048Z:16140b82-25a5-4f51-be6b-70d95e5f9ef5 X-Msedge-Ref: - - 'Ref A: E6C202A454B747C5B50DAD1188C58303 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:08Z' + - 'Ref A: 73B84BC1AE3D4C64BA4DB63ECB80F4EC Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:48Z' status: 200 OK code: 200 - duration: 592.8157ms - - id: 27 + duration: 220.0402ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1819,10 +2433,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1830,18 +2444,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3396 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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:09:07.6310809Z","duration":"PT1M21.7637392S","correlationId":"cead1430a78009474e737c75dc4a080a","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-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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-w8fae78/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crhppqpnqio3zhy"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-hppqpnqio3zhy"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crhppqpnqio3zhy.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:09 GMT + - Tue, 05 Nov 2024 03:10:48 GMT Expires: - "-1" Pragma: @@ -1853,19 +2467,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - 99faeeae-eba1-4f14-8ec0-81b7600cc8e7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020909Z:b159a51f-5075-4c0d-9610-f10022ad6eda + - WESTUS2:20241105T031049Z:99faeeae-eba1-4f14-8ec0-81b7600cc8e7 X-Msedge-Ref: - - 'Ref A: FCBD357DF1704A3EAA4B85E9671B56F7 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:09Z' + - 'Ref A: 0113F8CA8646406995B0CB2732EB2D83 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:48Z' status: 200 OK code: 200 - duration: 233.0529ms - - id: 28 + duration: 212.8057ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1886,10 +2502,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w8fae78%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1899,7 +2515,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-w8fae78","name":"rg-azdtest-w8fae78","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","DeleteAfter":"2024-11-05T04:07:44Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1908,7 +2524,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:09 GMT + - Tue, 05 Nov 2024 03:10:48 GMT Expires: - "-1" Pragma: @@ -1920,19 +2536,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - 78406f02-0d4f-4b4b-8085-350c714893ed X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020909Z:aca3e8f5-8eef-4ffd-8879-69227b5d01e1 + - WESTUS2:20241105T031049Z:78406f02-0d4f-4b4b-8085-350c714893ed X-Msedge-Ref: - - 'Ref A: 3116746BDA8845E6BADB751EF954CF87 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:09Z' + - 'Ref A: 193105551D414605A1D34B22B3F8C7DD Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:49Z' status: 200 OK code: 200 - duration: 53.7453ms - - id: 29 + duration: 97.0729ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1953,10 +2571,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1964,18 +2582,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1963 + content_length: 1973 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-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy","name":"log-hppqpnqio3zhy","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy","name":"crhppqpnqio3zhy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:07:51.878676Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:07:51.878676Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy","name":"cae-hppqpnqio3zhy","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:08.8744149Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:08:08.8744149Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy","name":"ca-hppqpnqio3zhy","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"None"},"tags":{"azd-env-name":"azdtest-w8fae78","azd-service-name":"web"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:49.8682433Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:10:07.5065035Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1963" + - "1973" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:09:10 GMT + - Tue, 05 Nov 2024 03:10:49 GMT Expires: - "-1" Pragma: @@ -1987,19 +2605,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1098" X-Ms-Request-Id: - - 5928fa02-2898-40bb-8fac-c8a0f4f61f99 + - 920e8a03-1bb5-4678-8a96-0e4aa63175b3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020910Z:5928fa02-2898-40bb-8fac-c8a0f4f61f99 + - WESTUS2:20241105T031049Z:920e8a03-1bb5-4678-8a96-0e4aa63175b3 X-Msedge-Ref: - - 'Ref A: 85D468D0281C4DDD85121FB440D13EE4 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:09Z' + - 'Ref A: 1A917FBD33A14B8789DE801496279E49 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:49Z' status: 200 OK code: 200 - duration: 488.6134ms - - id: 30 + duration: 165.3149ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2020,10 +2640,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w8fae78?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -2040,11 +2660,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:09:12 GMT + - Tue, 05 Nov 2024 03:10:50 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOEZBRTc4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663735240308675&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=MYyTf5Q0YCPoXV0DpbhYLHEBzQFuRDvGRqEGsoRt7ha4bZaBMSb5pwanhXcQKPBbVUYSg66gSo0fBJ_Qt1oBH14n9ZhRurWWxuiVCFtZsZZh2zEKEqdlx1UezatyA1kGtgZw16eyzaoVd4CyzYQbGZAT-VkL3r6ef5WH4paoEaYoMQgLn3NZ6eB1VE4qKM0MqQsUN153GCYqzrf6pTqUXiwmfszHUQUXkzPY8EcHiAUSQA0_phAac0kbzkXMBimHHJNO6-nzwyM_PDkYIppYebiqNAAhcS8p83VWNXCAVee1oBrhJ8zwgi_MBEhbx8xis71ZZm5S_dPLy3K1kWRIRA&h=bjx7G9GiUqBw-gdKfz4qdt_85faCa5oWsm-BxXw6uHE Pragma: - no-cache Retry-After: @@ -2056,19 +2676,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 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 + - 4eb8d53e-c5db-4d09-bd51-41339574f65e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T020912Z:508efb03-4c94-45fc-816f-53d2f1f72e20 + - WESTUS2:20241105T031050Z:4eb8d53e-c5db-4d09-bd51-41339574f65e X-Msedge-Ref: - - 'Ref A: F4785F54C45B4A2888C836CB904B74FE Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:09:10Z' + - 'Ref A: 4CEA1AEA0CB64E94ABEE82C9744F0F09 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:10:49Z' status: 202 Accepted code: 202 - duration: 2.450708s - - id: 31 + duration: 856.435ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2087,10 +2709,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXOEZBRTc4LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663735240308675&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=MYyTf5Q0YCPoXV0DpbhYLHEBzQFuRDvGRqEGsoRt7ha4bZaBMSb5pwanhXcQKPBbVUYSg66gSo0fBJ_Qt1oBH14n9ZhRurWWxuiVCFtZsZZh2zEKEqdlx1UezatyA1kGtgZw16eyzaoVd4CyzYQbGZAT-VkL3r6ef5WH4paoEaYoMQgLn3NZ6eB1VE4qKM0MqQsUN153GCYqzrf6pTqUXiwmfszHUQUXkzPY8EcHiAUSQA0_phAac0kbzkXMBimHHJNO6-nzwyM_PDkYIppYebiqNAAhcS8p83VWNXCAVee1oBrhJ8zwgi_MBEhbx8xis71ZZm5S_dPLy3K1kWRIRA&h=bjx7G9GiUqBw-gdKfz4qdt_85faCa5oWsm-BxXw6uHE method: GET response: proto: HTTP/2.0 @@ -2107,7 +2729,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:18:21 GMT + - Tue, 05 Nov 2024 03:18:58 GMT Expires: - "-1" Pragma: @@ -2119,19 +2741,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - 0eb45ec2-2fe1-4cc8-a140-05a82bf900fc X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021822Z:9249d2f9-669e-4ad2-97ed-d20d47f92cd1 + - WESTUS2:20241105T031859Z:0eb45ec2-2fe1-4cc8-a140-05a82bf900fc X-Msedge-Ref: - - 'Ref A: 3FF36BABA31547B9A0223FD3435C420D Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:09Z' + - 'Ref A: 3F9A241399D049B3A9713D855A683C30 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:18:59Z' status: 200 OK code: 200 - duration: 12.58109s - - id: 32 + duration: 192.7671ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2152,10 +2776,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2163,18 +2787,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3398 + content_length: 3396 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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w8fae78","azd-provision-param-hash":"13193b3b7d54b6afa389508f9a2cbdd55ec9cefa3b8ddc19cfbef59f1c27f64b"},"properties":{"templateHash":"5362782710926720725","parameters":{"environmentName":{"type":"String","value":"azdtest-w8fae78"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:44Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:09:07.6310809Z","duration":"PT1M21.7637392S","correlationId":"cead1430a78009474e737c75dc4a080a","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-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/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-w8fae78/providers/Microsoft.Resources/deployments/web","resourceType":"Microsoft.Resources/deployments","resourceName":"web"}],"outputs":{"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"crhppqpnqio3zhy"},"azurE_CONTAINER_ENVIRONMENT_NAME":{"type":"String","value":"cae-hppqpnqio3zhy"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"crhppqpnqio3zhy.azurecr.io"},"websitE_URL":{"type":"String","value":"https://ca-hppqpnqio3zhy.lemonsky-5f9cc839.eastus2.azurecontainerapps.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/containerApps/ca-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.App/managedEnvironments/cae-hppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.ContainerRegistry/registries/crhppqpnqio3zhy"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w8fae78/providers/Microsoft.OperationalInsights/workspaces/log-hppqpnqio3zhy"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "3398" + - "3396" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:21 GMT + - Tue, 05 Nov 2024 03:18:58 GMT Expires: - "-1" Pragma: @@ -2186,19 +2810,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - 186862ba-5a7e-4567-a02b-3b0d8e071bbc X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021822Z:252ea50d-f5b7-48fd-a4e7-7b8b8d3bf5fe + - WESTUS2:20241105T031859Z:186862ba-5a7e-4567-a02b-3b0d8e071bbc X-Msedge-Ref: - - 'Ref A: 74D9005093AF404C949F614B86665267 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:22Z' + - 'Ref A: 73CD8E5423D3423AA1D684F571B93CF3 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:18:59Z' status: 200 OK code: 200 - duration: 224.035ms - - id: 33 + duration: 235.6285ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2209,7 +2835,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-w8fae78"}}' form: {} headers: Accept: @@ -2223,10 +2849,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2236,10 +2862,10 @@ interactions: trailer: {} content_length: 570 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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w8fae78"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:19:01.4704191Z","duration":"PT0.0001038S","correlationId":"f71a36dbe65fb47f0c27682a9444cc81","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-w8fae78-1730776024/operationStatuses/08584708301454343269?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -2247,7 +2873,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:24 GMT + - Tue, 05 Nov 2024 03:19:01 GMT Expires: - "-1" Pragma: @@ -2259,21 +2885,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.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 + - d016dc76-3344-453c-b888-2d58351b38e1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021825Z:b681c18c-3f09-44e4-8bb8-6b8f8d6a67da + - WESTUS2:20241105T031901Z:d016dc76-3344-453c-b888-2d58351b38e1 X-Msedge-Ref: - - 'Ref A: 0216CF7CDD3743F2A0B5C101EEF4E640 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:22Z' + - 'Ref A: 2D39CD53AFB140C88B064734DF3AD340 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:18:59Z' status: 200 OK code: 200 - duration: 2.8257405s - - id: 34 + duration: 2.397037s + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2292,10 +2920,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024/operationStatuses/08584708301454343269?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2314,7 +2942,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:24 GMT + - Tue, 05 Nov 2024 03:19:31 GMT Expires: - "-1" Pragma: @@ -2326,19 +2954,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + 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 + - c7c68b12-ca1a-4728-b667-e960972ac863 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021825Z:7cc5b53d-cc49-4b80-9b63-8fa4a6881b05 + - WESTUS2:20241105T031932Z:c7c68b12-ca1a-4728-b667-e960972ac863 X-Msedge-Ref: - - 'Ref A: C0BB18D95DD744A2B418196FF8E38F5E Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:25Z' + - 'Ref A: C9A9DBA7DD5F4D07BDBCE9FF402512C2 Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:19:32Z' status: 200 OK code: 200 - duration: 200.1206ms - - id: 35 + duration: 231.5388ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2357,10 +2987,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - f71a36dbe65fb47f0c27682a9444cc81 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w8fae78-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2370,7 +3000,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-w8fae78-1730776024","name":"azdtest-w8fae78-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w8fae78"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:19:02.3411918Z","duration":"PT0.8708765S","correlationId":"f71a36dbe65fb47f0c27682a9444cc81","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -2379,7 +3009,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:18:25 GMT + - Tue, 05 Nov 2024 03:19:32 GMT Expires: - "-1" Pragma: @@ -2391,19 +3021,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a84e1cb39c813f869e50e1157baa63d5 + - f71a36dbe65fb47f0c27682a9444cc81 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11997" + - "1099" X-Ms-Request-Id: - - 58029ce8-e6d5-4faf-b63c-5b8a1a4c1ffa + - c22570cd-43be-4a08-b00e-d8bfbe77a1f3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021825Z:58029ce8-e6d5-4faf-b63c-5b8a1a4c1ffa + - WESTUS2:20241105T031932Z:c22570cd-43be-4a08-b00e-d8bfbe77a1f3 X-Msedge-Ref: - - 'Ref A: A40A9413DEA0491F8EE34ED383337A26 Ref B: CO1EDGE2620 Ref C: 2024-08-23T02:18:25Z' + - 'Ref A: EE37B92AD53942E184AACF548755BCBC Ref B: CO6AA3150217023 Ref C: 2024-11-05T03:19:32Z' status: 200 OK code: 200 - duration: 369.1005ms + duration: 276.1211ms --- -env_name: azdtest-w962778 +env_name: azdtest-w8fae78 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724378473" +time: "1730776024" 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..df1387ffc14 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:25 GMT + - Tue, 05 Nov 2024 03:07:20 GMT Expires: - "-1" Pragma: @@ -56,18 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + 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 + - 45b4d297-59dc-4c72-92f7-a16e6e7069dd X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021926Z:987cb6d1-c99b-4a69-bb09-dbec0266e6ee + - WESTUS2:20241105T030720Z:45b4d297-59dc-4c72-92f7-a16e6e7069dd X-Msedge-Ref: - - 'Ref A: F09204A0934A408991620611CB89531A Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:23Z' + - 'Ref A: 1D57E46DEE134A26BC113E32765373B1 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:17Z' status: 200 OK code: 200 - duration: 2.7282893s + duration: 2.9529026s - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0dc079%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, 05 Nov 2024 03:07:20 GMT Expires: - "-1" Pragma: @@ -123,18 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + 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 + - ea9808f5-559f-4755-bb74-e067feea3f19 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021926Z:7073556d-e5de-433a-8cae-548c48b214b8 + - WESTUS2:20241105T030720Z:ea9808f5-559f-4755-bb74-e067feea3f19 X-Msedge-Ref: - - 'Ref A: C7DC7230C1C848209A16FAC15D6AD410 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:26Z' + - 'Ref A: 99702014E3E645448002CA6CA1B84D91 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:20Z' status: 200 OK code: 200 - duration: 144.1889ms + duration: 54.8992ms - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e 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: 36065 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/viva-rg-dos","name":"viva-rg-dos","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"11/06/2024 00:26:24"},"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/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhan","name":"rg-kashifkhan","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"11/10/2024 23:19: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-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/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-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-24T20:29:43.5161316Z","Owners":"ripark","ServiceDirectory":"messaging/eventgrid/aznamespaces","DoNotDelete":"Service team has setup special things on this resource"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-24T20:29:53.5675114Z","Owners":"ripark","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-11-24T20:30:01.92764Z","Owners":"ripark","ServiceDirectory":"data/aztables"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-poi","name":"anuchan-poi","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/20/2024 19:14:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-05T16:36:12.7311142Z","Owners":"swathip","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test","name":"rg-jairmyreetables-cosmos-test","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-05T19:49:12.1924511Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test-2","name":"rg-jairmyreetables-cosmos-test-2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-06T17:17:29.5664455Z"},"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","ServiceDirectory":"eventhub","DeleteAfter":"2024-11-06T00:29:30.4170476Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingplaywrighttesting","name":"rg-mreddingplaywrighttesting","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"mredding","DeleteAfter":"2024-11-06T15:14:57.5037519Z","ServiceDirectory":"playwrighttesting"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jairmyreetables-cosmos-test-arm-template","name":"rg-jairmyreetables-cosmos-test-arm-template","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"jairmyree","ServiceDirectory":"tables","DeleteAfter":"2024-11-06T17:25:43.0098562Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventgrid","name":"rg-llawrenceeventgrid","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"eventgrid","Owners":"llawrence","DeleteAfter":"2024-11-06T17:27:36.9085537Z"},"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","Owners":"llawrence","DeleteAfter":"2024-11-06T21:13:38.3123790Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-larryoeventhubs","name":"rg-larryoeventhubs","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-06T23:43:29.0216958Z","Owners":"larryo","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mreddingservicebus","name":"rg-mreddingservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-14T20:33:47.6321168+00:00","Owners":"mredding","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-gearamatables","name":"rg-gearamatables","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-09T22:05:22.0269094Z","ServiceDirectory":"tables","Owners":"gearama"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-yallappconfigtests","name":"rg-yallappconfigtests","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2024-11-10T00:50:00.3584357Z","Owners":"yall","ServiceDirectory":"appconfiguration"},"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/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-scbedd","name":"rg-scbedd","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"11/12/2024 03:24:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/connieyeh-false-processor-java-eventhubs-1","name":"connieyeh-false-processor-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildNumber":"","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","DeleteAfter":"2024-11-11T20:38:36.2081778Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/connieyeh-true-processor-java-eventhubs-1","name":"connieyeh-true-processor-java-eventhubs-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2024-11-11T20:38:37.0108639Z","BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkova-6122_ai","name":"rg-limolkova-6122_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"11/15/2024 00:26:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/javacsmrg64178","name":"javacsmrg64178","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/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-dev","name":"rg-dev","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","tags":{"azd-env-name":"dev","tag1":"val","tag2":"val"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/abc-app6-dev-rg","name":"abc-app6-dev-rg","type":"Microsoft.Resources/resourceGroups","location":"australiaeast","tags":{"azd-env-name":"dev","tag1":"val","tag2":"val"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-aks-1","name":"rg-hemarina-aks-1","type":"Microsoft.Resources/resourceGroups","location":"australiacentral","tags":{"azd-env-name":"hemarina-aks-1","DeleteAfter":"11/10/2024 23:19:07"},"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/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-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-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-jstest","name":"yumeng-jstest","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/07/2024 23:16:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-hooligans","name":"rg-wabrez-hooligans","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/10/2024 23:19:09"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-remote-test-1","name":"rg-hemarina-remote-test-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-remote-test-1","DeleteAfter":"11/10/2024 23:19:10"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-dev","name":"rg-weilim-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"weilim-dev","DeleteAfter":"11/11/2024 23:20:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-aspire-empty","name":"rg-matell-aspire-empty","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-aspire-empty","DeleteAfter":"11/11/2024 23:20:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua1","name":"rg-shihua1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua1","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 04:53:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-py","name":"rg-tomenv11-4-py","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-py","DeleteAfter":"11/05/2024 08:42:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-shop1","name":"rg-tomenv11-4-shop1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-shop1","DeleteAfter":"11/05/2024 08:42:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-vscode-shop","name":"rg-tomenv11-4-vscode-shop","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-vscode-shop","DeleteAfter":"11/05/2024 08:42:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua5","name":"rg-shihua5","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua5","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 08:42:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-4-stand","name":"rg-tomenv11-4-stand","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-4-stand","DeleteAfter":"11/05/2024 08:42:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shihua6","name":"rg-shihua6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"shihua6","spring-cloud-azure":"true","DeleteAfter":"11/05/2024 12:25:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-kv-general","name":"vivazqu-kv-general","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fff","DeleteAfter":"11/15/2024 00:26:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-limolkovaai","name":"rg-limolkovaai","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"11/06/2024 00:26:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-hoolis","name":"rg-wabrez-hoolis","type":"Microsoft.Resources/resourceGroups","location":"eastus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-azd-1","name":"rg-jinlong-azd-1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jinlong-azd-1"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-tomenv11-5-a","name":"rg-tomenv11-5-a","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"tomenv11-5-a"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zimu","name":"rg-zimu","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zimu"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-zedy-test-1105","name":"rg-zedy-test-1105","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"zedy-test-1105"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rg-test-tc-asdjhk422","name":"rg-rg-test-tc-asdjhk422","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"rg-test-tc-asdjhk422"},"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/cm55304278066c492","name":"cm55304278066c492","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"10/23/2025 19:15:42","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llaw","name":"rg-llaw","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"ServiceDirectory":"eventgrid","Owners":"llawrence","DeleteAfter":"2024-11-06T17:38:05.4263918Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/DefaultResourceGroup-EUS","name":"DefaultResourceGroup-EUS","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/05/2024 12:25:33"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mreddingtest","name":"mreddingtest","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"11/06/2024 00:26:26"},"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" + - "36065" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:25 GMT + - Tue, 05 Nov 2024 03:07:20 GMT Expires: - "-1" Pragma: @@ -190,18 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + 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 + - a1cb7b63-cf37-46de-880d-2422c831c6fd X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021926Z:e98cfe84-81ea-4369-906a-db51a9b7232a + - WESTUS2:20241105T030721Z:a1cb7b63-cf37-46de-880d-2422c831c6fd X-Msedge-Ref: - - 'Ref A: D6AECA7D9DD8489B9B8DD6587F615627 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:26Z' + - 'Ref A: DD37D27B1B8448C39BFB244465FA7016 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:20Z' status: 200 OK code: 200 - duration: 65.4707ms + duration: 57.387ms - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e 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: 1860935 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=xZHNbsIwEISfBZ9BsklaFW4YG4mStRNnnSrcENBAghKpDcoPyrs3acupPfXS0%2b5qZqVvNDeyL%2fLynF935bnIsciO%2bTuZ38iLDNGGUzLPr5fLmMjF93kj%2bbEu%2fd1beR4eNseGzAkbPY0UxjW08YSMPx2mqO4am7ojk604iKQK7FaADVwlODfiIgIarcBKqpCLAKOlwsOrYUp7Ia20sL1vXytcOBplqwS4IKQDDbMmUlanzzKS8AiZ4ZaeZEiLGtLhDmrVQgUiczXahnR3%2fiHYf%2bD32AkDXLeA8a%2f4Rp68MEt%2b4Ks2mQ74S6nQLDwb3vsY6pHWaF%2f%2bLZNL%2f14JrplGeABhHUhjCmni6JBtAqs8S2f6q5aZxLZozIpvI3nyMe13yXzMDv6g914%2bTEj3jUomE9J13Qc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2130656" + - "1860935" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:33 GMT + - Tue, 05 Nov 2024 03:07:27 GMT Expires: - "-1" Pragma: @@ -257,18 +263,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1100" X-Ms-Request-Id: - - 6cb48600-c095-4365-ace3-812d4fa554a5 + - 62cbc021-f074-4c7c-a12d-6951247dc5cf X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021933Z:6cb48600-c095-4365-ace3-812d4fa554a5 + - WESTUS2:20241105T030728Z:62cbc021-f074-4c7c-a12d-6951247dc5cf X-Msedge-Ref: - - 'Ref A: 76AB9AC222B24A0581543C93C084AE68 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:26Z' + - 'Ref A: 7DEC343D3649421CB206EF704DF19D1A Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:21Z' status: 200 OK code: 200 - duration: 7.5511557s + duration: 7.2498916s - id: 4 request: proto: HTTP/1.1 @@ -288,10 +296,278 @@ 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHNbsIwEISfBZ9BsklaFW4YG4mStRNnnSrcENBAghKpDcoPyrs3acupPfXS0%2b5qZqVvNDeyL%2fLynF935bnIsciO%2bTuZ38iLDNGGUzLPr5fLmMjF93kj%2bbEu%2fd1beR4eNseGzAkbPY0UxjW08YSMPx2mqO4am7ojk604iKQK7FaADVwlODfiIgIarcBKqpCLAKOlwsOrYUp7Ia20sL1vXytcOBplqwS4IKQDDbMmUlanzzKS8AiZ4ZaeZEiLGtLhDmrVQgUiczXahnR3%2fiHYf%2bD32AkDXLeA8a%2f4Rp68MEt%2b4Ks2mQ74S6nQLDwb3vsY6pHWaF%2f%2bLZNL%2f14JrplGeABhHUhjCmni6JBtAqs8S2f6q5aZxLZozIpvI3nyMe13yXzMDv6g914%2bTEj3jUomE9J13Qc%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1788299 + 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=xZHNToNAFIWfhVlDwp%2bJYTd0plHpnQHmTk3dNYgGIYNRGgoN726RsvAJ3N1zzrf4knshRWu6ypyOXdUabOvSfJPoQjhVqJU%2fn6Y8d%2bnxq6tmIikHEhHPurcEHs4wHhxi%2fxJ526%2bb54ZWXm9jYO99pl8Y6CwULI5z1rDM3W9Bc1dgzDLcbwS%2bvuWekDvl9pLpK1cMgNQXyH0YeSgZD0B5QvG7VH48ccBikKh7YODLzHHIZN9c%2f01VskcXxjqAkYYwzKqfyV9VOki6qD5zhVznMuUkMqemscncaBWsUSdKanxY47Je37DAGy4wpzutlmKafgA%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1788299" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 43d70772-4f8c-494a-bb3f-9236384f8a34 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030732Z:43d70772-4f8c-494a-bb3f-9236384f8a34 + X-Msedge-Ref: + - 'Ref A: A0B39E2A33E24CEA9A492499CF395C16 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:28Z' + status: 200 OK + code: 200 + duration: 4.0738325s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHNToNAFIWfhVlDwp%2bJYTd0plHpnQHmTk3dNYgGIYNRGgoN726RsvAJ3N1zzrf4knshRWu6ypyOXdUabOvSfJPoQjhVqJU%2fn6Y8d%2bnxq6tmIikHEhHPurcEHs4wHhxi%2fxJ526%2bb54ZWXm9jYO99pl8Y6CwULI5z1rDM3W9Bc1dgzDLcbwS%2bvuWekDvl9pLpK1cMgNQXyH0YeSgZD0B5QvG7VH48ccBikKh7YODLzHHIZN9c%2f01VskcXxjqAkYYwzKqfyV9VOki6qD5zhVznMuUkMqemscncaBWsUSdKanxY47Je37DAGy4wpzutlmKafgA%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1210749 + 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=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1210749" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d80217d5-6be5-42de-b298-cb8bb209cd9f + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030736Z:d80217d5-6be5-42de-b298-cb8bb209cd9f + X-Msedge-Ref: + - 'Ref A: 061749C0F2D649A08523C4FC596A72E0 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:32Z' + status: 200 OK + code: 200 + duration: 3.4729322s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 160397 + 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=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "160397" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 04f546ad-c09b-49f3-ad77-ac0708095d17 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030738Z:04f546ad-c09b-49f3-ad77-ac0708095d17 + X-Msedge-Ref: + - 'Ref A: B7BCF195432B4BA4A39AA743454B1FAD Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:36Z' + status: 200 OK + code: 200 + duration: 1.7977976s + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5320 + 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5320" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 61d961e2-106d-4777-89d5-6f76eb0954e9 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030739Z:61d961e2-106d-4777-89d5-6f76eb0954e9 + X-Msedge-Ref: + - 'Ref A: 5923D8148F4C499AA2411CEBF22C9D65 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:38Z' + status: 200 OK + code: 200 + duration: 1.0595963s + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -299,18 +575,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383149 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "383149" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:35 GMT + - Tue, 05 Nov 2024 03:07:39 GMT Expires: - "-1" Pragma: @@ -322,19 +598,94 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 39cc5713-6763-4f96-8d6e-82b2b5b8c0b4 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T030739Z:39cc5713-6763-4f96-8d6e-82b2b5b8c0b4 + X-Msedge-Ref: + - 'Ref A: DD21F615471D4539B971AF3E859D4DDF Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:39Z' + status: 200 OK + code: 200 + duration: 433.7441ms + - id: 9 + 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-w0dc079"},"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-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"}}' + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024/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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:39Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"34b4039785725d5f23526ae986f93b4e","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-w0dc079","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0dc079"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/providers/Microsoft.Authorization/roleAssignments/a7758fdc-f1de-501c-bcf8-12cc2347e2bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2693" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:07: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: + - 34b4039785725d5f23526ae986f93b4e + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - b0382192-6510-44d5-86a4-a6a8055b3044 + - 0cd85615-99eb-465b-8064-22a6534a2f63 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021936Z:b0382192-6510-44d5-86a4-a6a8055b3044 + - WESTUS2:20241105T030741Z:0cd85615-99eb-465b-8064-22a6534a2f63 X-Msedge-Ref: - - 'Ref A: D2CDB87EE4154150B0D98184CE2401FA Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:34Z' + - 'Ref A: 19C826261E8E4EF5832DC8ED1E9B2055 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:39Z' status: 200 OK code: 200 - duration: 2.0222281s - - id: 5 + duration: 1.6198692s + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -345,7 +696,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-w0dc079"},"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-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"}}' form: {} headers: Accept: @@ -359,10 +710,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -372,10 +723,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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:41Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:07:43.2041731Z","duration":"PT0.0000938S","correlationId":"34b4039785725d5f23526ae986f93b4e","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-w0dc079","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0dc079"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/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-w0dc079-1730776024/operationStatuses/08584708308237407167?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -383,7 +734,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:19:38 GMT + - Tue, 05 Nov 2024 03:07:43 GMT Expires: - "-1" Pragma: @@ -395,21 +746,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.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 + - 261cd742-6acf-4246-a9dc-cb70bd936734 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T021939Z:dc96eec6-0342-44b6-9d46-128c403fc183 + - WESTUS2:20241105T030743Z:261cd742-6acf-4246-a9dc-cb70bd936734 X-Msedge-Ref: - - 'Ref A: 6C7DC4D6670E482B9F21569693439431 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:19:36Z' + - 'Ref A: 466004B42D2F43DC828AD8CA992F57E7 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:07:41Z' status: 201 Created code: 201 - duration: 2.9405167s - - id: 6 + duration: 2.3100748s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -428,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024/operationStatuses/08584708308237407167?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -450,7 +803,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:11 GMT + - Tue, 05 Nov 2024 03:10:14 GMT Expires: - "-1" Pragma: @@ -462,19 +815,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + 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 + - 65063fb2-6add-45cb-9033-c5d32a1b6d82 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022211Z:d9ba8f3e-9cae-4020-88af-b2810601b646 + - WESTUS2:20241105T031015Z:65063fb2-6add-45cb-9033-c5d32a1b6d82 X-Msedge-Ref: - - 'Ref A: 1303E71FEB924948A4F120634B807214 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:11Z' + - 'Ref A: 4BCBCD031FDD4514AE04C794E8CC675C Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:14Z' status: 200 OK code: 200 - duration: 420.0035ms - - id: 7 + duration: 275.4503ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -493,10 +848,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -504,18 +859,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2783 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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:41Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:10:01.7700223Z","duration":"PT2M18.565943S","correlationId":"34b4039785725d5f23526ae986f93b4e","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-w0dc079","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0dc079"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acril4dmzxozflko.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/providers/Microsoft.Authorization/roleAssignments/a7758fdc-f1de-501c-bcf8-12cc2347e2bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2783" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:11 GMT + - Tue, 05 Nov 2024 03:10:14 GMT Expires: - "-1" Pragma: @@ -527,19 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + 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 + - fef0f233-b3ad-47ad-9cf6-84d911fd399e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022211Z:a37f09ab-55ef-4992-94dd-cb217ed8c954 + - WESTUS2:20241105T031015Z:fef0f233-b3ad-47ad-9cf6-84d911fd399e X-Msedge-Ref: - - 'Ref A: B447FAA8E53F4C7A8CAE12D51F2A8E95 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:11Z' + - 'Ref A: EF4695AE2596451E905D5579A4730183 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:15Z' status: 200 OK code: 200 - duration: 383.8966ms - - id: 8 + duration: 248.349ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -560,10 +917,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 34b4039785725d5f23526ae986f93b4e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0dc079%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -573,7 +930,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-w0dc079","name":"rg-azdtest-w0dc079","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","DeleteAfter":"2024-11-05T04:07:41Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -582,7 +939,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:11 GMT + - Tue, 05 Nov 2024 03:10:14 GMT Expires: - "-1" Pragma: @@ -594,19 +951,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a0b54248836ba1cc2e91b499ef84bc76 + - 34b4039785725d5f23526ae986f93b4e + 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 + - 45375694-170f-4c90-a22d-33a791d738de X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022212Z:dc23bfd3-fd27-4f90-8c0e-fd90ef404258 + - WESTUS2:20241105T031015Z:45375694-170f-4c90-a22d-33a791d738de X-Msedge-Ref: - - 'Ref A: 80E5DEFB7D174BE498A1FF7722DCF2FE Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:12Z' + - 'Ref A: E38F81FD45F747EB92640CDF4595C32A Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:15Z' status: 200 OK code: 200 - duration: 66.9535ms - - id: 9 + duration: 49.7862ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -627,10 +986,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0dc079%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -640,7 +999,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-w0dc079","name":"rg-azdtest-w0dc079","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","DeleteAfter":"2024-11-05T04:07:41Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -649,7 +1008,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:13 GMT + - Tue, 05 Nov 2024 03:10:15 GMT Expires: - "-1" Pragma: @@ -661,19 +1020,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 0fe9d344-9343-4b2f-ae68-39c9a7042520 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022213Z:ece796f6-574f-4125-baab-60d07cb6925a + - WESTUS2:20241105T031016Z:0fe9d344-9343-4b2f-ae68-39c9a7042520 X-Msedge-Ref: - - 'Ref A: 98164A538331440BA90A838F2FC1B8D1 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:13Z' + - 'Ref A: D18C8E17B0DA473CA059D014B957BE40 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:16Z' status: 200 OK code: 200 - duration: 64.2348ms - - id: 10 + duration: 41.6713ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -694,10 +1055,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/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 +1068,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-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko","name":"app-il4dmzxozflko","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81","clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286"}}},"tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"}}]}' headers: Cache-Control: - no-cache @@ -716,7 +1077,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:14 GMT + - Tue, 05 Nov 2024 03:10:15 GMT Expires: - "-1" Pragma: @@ -728,19 +1089,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1098" X-Ms-Request-Id: - - aeb86713-f6c1-41f1-b0af-206ffc83687f + - 833b5285-b00c-4861-b24f-dbd86f0afcba X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022214Z:aeb86713-f6c1-41f1-b0af-206ffc83687f + - WESTUS2:20241105T031016Z:833b5285-b00c-4861-b24f-dbd86f0afcba X-Msedge-Ref: - - 'Ref A: 98109D18468242D48E4885D39C643611 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:13Z' + - 'Ref A: C229BF391FA34CC1911CCAE12F0A48F0 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:16Z' status: 200 OK code: 200 - duration: 782.832ms - - id: 11 + duration: 181.7726ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -763,10 +1126,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/listBuildSourceUploadUrl?api-version=2019-06-01-preview method: POST response: proto: HTTP/2.0 @@ -776,7 +1139,7 @@ interactions: trailer: {} content_length: 345 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/202411050000/b5f094a7df94dada37a02db98fe7469e.tar.gz","uploadUrl":"https://eus2managed246.blob.core.windows.net/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/source/202411050000/b5f094a7df94dada37a02db98fe7469e.tar.gz?se=2024-11-05T04%3A10%3A16Z\u0026sig=SANITIZED\u0026sp=cw\u0026sr=b\u0026sv=2023-01-03"}' headers: Cache-Control: - no-cache @@ -785,7 +1148,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:14 GMT + - Tue, 05 Nov 2024 03:10:16 GMT Expires: - "-1" Pragma: @@ -797,39 +1160,41 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 9b9afa97-a458-482e-bd7b-e3d8068a5771 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022214Z:bbbbf932-e2ed-470e-aecf-ff34cf8af338 + - WESTUS2:20241105T031017Z:443b21b7-ee4e-4a8b-b0a6-1eab4f7ef567 X-Msedge-Ref: - - 'Ref A: AF57B78C51B042A68AA54FE4A3EB99D5 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:14Z' + - 'Ref A: AE022AA58757489EA7C70301EDF8D6A2 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:16Z' status: 200 OK code: 200 - duration: 615.7925ms - - id: 12 + duration: 524.1205ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 456 + content_length: 449 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.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/+yVUWvbMBDH86xPcfjFLnjyWbaTkpK9JB0do6Skg22MQUV8y9y6kispI9 + vodx+KlzWEQR+2JAz8exG6k+/+h/hbEz2/I/O5qqm3NxAR+/3+ekXE3RXTQvTSfJCKDItB + LnqYpiIveoD7k/TE0jppevjXvXaH+094NZtegtIlDYVg7N109mbyegaJbBo2nl59gEbO7+ + SC+K3VaitcqZJW/Na2ofP3V9Prc8gQkbHx5QQ+Br5kEEOwORh8OvakHX9icz/77PGc//Ms + 2/E/DoTo/H8I5lpZB1+ca2AEhh6WlaEo9Pvw5IyxNm3JfCUDo/U5PjckHV2vY1Fk6CEGQ/ + YERi/hBwMAv+PWSbe0Y10SjEAgnj1lyF2QLMlE4VgrR8q9ePutoTCG0NHKJU0tK+Wbbz4g + VUbhBdW1juFGfi9vuM8+enmtMF5X1pGKTvEUY4hWW1K8fl0Tr/UiClvJYJZKVWoBsp17mC + SpGHDkyNOhL5H8Kn/sqzkI2//3ffV4zv9YFLvvf5Fnnf8PQWuTQMl7CoYQyKYJ4jZ0Lyvl + Q79fcPZ4bLEdHR0dHf+MnwEAAP//mV4J9gAQAAA= form: {} headers: Accept: @@ -839,16 +1204,16 @@ interactions: Authorization: - SANITIZED Content-Length: - - "456" + - "449" 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/source/202411050000/b5f094a7df94dada37a02db98fe7469e.tar.gz?se=2024-11-05T04%3A10%3A16Z&sig=SANITIZED&sp=cw&sr=b&sv=2023-01-03 method: PUT response: proto: HTTP/1.1 @@ -863,27 +1228,27 @@ interactions: Content-Length: - "0" Content-Md5: - - L81OMkZxR0QJTzL2qlODQA== + - sEeSKdnq6GRy4wruX0hkPQ== Date: - - Fri, 23 Aug 2024 02:22:14 GMT + - Tue, 05 Nov 2024 03:10:16 GMT Etag: - - '"0x8DCC31A6776C845"' + - '"0x8DCFD475FF4706C"' Last-Modified: - - Fri, 23 Aug 2024 02:22:15 GMT + - Tue, 05 Nov 2024 03:10:17 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Content-Crc64: - - xZLfqk9O0B0= + - U1SktiHBPko= X-Ms-Request-Id: - - 43f556fc-701e-004e-4a03-f50e04000000 + - 70b95421-901e-00c0-3230-2fea7b000000 X-Ms-Request-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 201 Created code: 201 - duration: 411.1809ms - - id: 13 + duration: 341.0347ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -894,7 +1259,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":["acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024"],"isPushEnabled":true,"platform":{"os":"Linux","architecture":"amd64"},"sourceLocation":"source/202411050000/b5f094a7df94dada37a02db98fe7469e.tar.gz","type":"DockerBuildRequest"}' form: {} headers: Accept: @@ -908,10 +1273,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/scheduleRun?api-version=2019-06-01-preview method: POST response: proto: HTTP/2.0 @@ -919,18 +1284,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-11-05T03:10:17+00:00","provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:10:17.6032855+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, 05 Nov 2024 03:10:17 GMT Expires: - "-1" Pragma: @@ -942,19 +1307,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - a29807fb-3b3a-4a94-9629-5cfa41baa207 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022216Z:f3c83404-e3be-47dc-9023-2980b23430fd + - WESTUS2:20241105T031018Z:9645481a-41bb-4a68-979d-aaf5721ee5da X-Msedge-Ref: - - 'Ref A: F6262EC9E8DD4A1B949260B87B134AA7 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:15Z' + - 'Ref A: E6DBE109F78B4F51828ACC9F545E8FB7 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:17Z' status: 200 OK code: 200 - duration: 1.0238964s - - id: 14 + duration: 605.7693ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -977,10 +1344,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/runs/ch1/listLogSasUrl?api-version=2019-06-01-preview method: POST response: proto: HTTP/2.0 @@ -988,18 +1355,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 234 + content_length: 226 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://eus2managed246.blob.core.windows.net/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z\u0026sig=SANITIZED\u0026sp=r\u0026sr=b\u0026sv=2023-01-03"}' headers: Cache-Control: - no-cache Content-Length: - - "234" + - "226" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:17 GMT Expires: - "-1" Pragma: @@ -1011,19 +1378,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 4b94d0f5-07e5-44f9-951d-7a81513c4557 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022216Z:c815fd99-01c8-43d4-bcc8-5a53d7501213 + - WESTUS2:20241105T031018Z:e3feb4a3-2a18-414b-9fc3-511aa0e529c9 X-Msedge-Ref: - - 'Ref A: 455C8CB98E674C6FA5D9A967853ECB8E Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:22:16Z' + - 'Ref A: 8C95DC38E69D49CD81A194303C89A338 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:10:18Z' status: 200 OK code: 200 - duration: 494.0447ms - - id: 15 + duration: 591.0071ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1031,7 +1400,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1042,12 +1411,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1055,7 +1424,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 48 uncompressed: false body: "" headers: @@ -1066,37 +1435,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, 05 Nov 2024 03:10:17 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCFD476098AA7A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55817-701e-004e-3503-f50e04000000 + - 70b9568b-901e-00c0-7330-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.5447ms - - id: 16 + duration: 71.8473ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1104,7 +1473,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1117,14 +1486,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -1132,9 +1501,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/11/05 03:10:18 Downloading source code...\r\n" headers: Accept-Ranges: - bytes @@ -1143,39 +1512,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, 05 Nov 2024 03:10:17 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCFD476098AA7A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5582e-701e-004e-4903-f50e04000000 + - 70b956bc-901e-00c0-1f30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 86.2277ms - - id: 17 + duration: 57.49ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1183,7 +1552,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1194,12 +1563,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1207,7 +1576,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 102 + content_length: 48 uncompressed: false body: "" headers: @@ -1218,37 +1587,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, 05 Nov 2024 03:10:18 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCFD476098AA7A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55834-701e-004e-4f03-f50e04000000 + - 70b956e6-901e-00c0-4830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.7892ms - - id: 18 + duration: 57.0508ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1256,7 +1625,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1267,12 +1636,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1295,11 +1664,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:17 GMT + - Tue, 05 Nov 2024 03:10:19 GMT Etag: - - '"0x8DCC31A6870B172"' + - '"0x8DCFD4760F8128E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:19 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1307,21 +1676,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f558cf-701e-004e-4503-f50e04000000 + - 70b958e9-901e-00c0-2d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.4234ms - - id: 19 + duration: 71.2725ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1329,7 +1698,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1337,25 +1706,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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/11/05 03:10:19 Finished downloading source code\r\n" headers: Accept-Ranges: - bytes @@ -1364,37 +1737,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, 05 Nov 2024 03:10:19 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCFD4760F8128E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 05 Nov 2024 03:10:19 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55995-701e-004e-6703-f50e04000000 + - 70b9590c-901e-00c0-4e30-2fea7b000000 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: 61.5048ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1402,7 +1777,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1410,29 +1785,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=102-789 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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 +1812,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, 05 Nov 2024 03:10:19 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCFD4760F8128E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 05 Nov 2024 03:10:19 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f559ab-701e-004e-7703-f50e04000000 + - 70b95933-901e-00c0-7230-2fea7b000000 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: 72.8001ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1481,7 +1850,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1492,12 +1861,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1505,7 +1874,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 102 uncompressed: false body: "" headers: @@ -1516,37 +1885,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, 05 Nov 2024 03:10:20 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCFD4760F8128E"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 05 Nov 2024 03:10:19 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f559cb-701e-004e-0e03-f50e04000000 + - 70b95b2c-901e-00c0-4830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.7651ms - - id: 22 + duration: 70.2841ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1554,7 +1923,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1565,12 +1934,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1578,7 +1947,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 790 + content_length: 766 uncompressed: false body: "" headers: @@ -1589,15 +1958,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "766" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:19 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCFD476238EE10"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1605,21 +1974,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55a97-701e-004e-3c03-f50e04000000 + - 70b95d71-901e-00c0-7030-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 92.7348ms - - id: 23 + duration: 71.6279ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1627,7 +1996,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1635,25 +2004,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - bytes=102-765 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 664 uncompressed: false - body: "" + body: "2024/11/05 03:10:19 Using acb_vol_fb26c7ed-25d7-4e68-b602-4ea48a40eae3 as the home volume\n2024/11/05 03:10:19 Setting up Docker configuration...\n2024/11/05 03:10:19 Successfully set up Docker configuration\n2024/11/05 03:10:19 Logging in to registry: acril4dmzxozflko.azurecr.io\n2024/11/05 03:10:20 Successfully logged into acril4dmzxozflko.azurecr.io\n2024/11/05 03:10:20 Executing step ID: build. Timeout(sec): 28800, Working directory: '', Network: ''\n2024/11/05 03:10:20 Scanning for dependencies...\n2024/11/05 03:10:20 Successfully scanned dependencies\n2024/11/05 03:10:20 Launching container with name: build\nSending build context to Docker daemon 4.096kB\r\r\r\n" headers: Accept-Ranges: - bytes @@ -1662,15 +2035,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "790" + - "664" + Content-Range: + - bytes 102-765/766 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:21 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Etag: - - '"0x8DCC31A69A3BA12"' + - '"0x8DCFD476238EE10"' Last-Modified: - - Fri, 23 Aug 2024 02:22:18 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1678,21 +2053,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55b88-701e-004e-8003-f50e04000000 + - 70b95d96-901e-00c0-1330-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.7673ms - - id: 24 + status: 206 Partial Content + code: 206 + duration: 72.5287ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1700,7 +2075,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1711,12 +2086,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1724,7 +2099,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1504 + content_length: 766 uncompressed: false body: "" headers: @@ -1735,37 +2110,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1504" + - "766" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:22 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Etag: - - '"0x8DCC31A6B6ED58B"' + - '"0x8DCFD476238EE10"' Last-Modified: - - Fri, 23 Aug 2024 02:22:21 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "4" + - "3" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55c2c-701e-004e-7303-f50e04000000 + - 70b95dc0-901e-00c0-3730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.5655ms - - id: 25 + duration: 71.5667ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1773,7 +2148,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1781,29 +2156,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=790-1503 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 714 + content_length: 766 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" + body: "" headers: Accept-Ranges: - bytes @@ -1812,39 +2183,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "714" - Content-Range: - - bytes 790-1503/1504 + - "766" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:22 GMT + - Tue, 05 Nov 2024 03:10:22 GMT Etag: - - '"0x8DCC31A6B6ED58B"' + - '"0x8DCFD476238EE10"' Last-Modified: - - Fri, 23 Aug 2024 02:22:21 GMT + - Tue, 05 Nov 2024 03:10:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "4" + - "3" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55c3b-701e-004e-7e03-f50e04000000 + - 70b95fc9-901e-00c0-1c30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 92.3782ms - - id: 26 + status: 200 OK + code: 200 + duration: 62.5779ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1852,7 +2221,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1863,12 +2232,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -1876,7 +2245,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1504 + content_length: 1699 uncompressed: false body: "" headers: @@ -1887,15 +2256,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1504" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:22 GMT + - Tue, 05 Nov 2024 03:10:23 GMT Etag: - - '"0x8DCC31A6B6ED58B"' + - '"0x8DCFD47642D34CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:21 GMT + - Tue, 05 Nov 2024 03:10:24 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1903,21 +2272,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55c45-701e-004e-0403-f50e04000000 + - 70b961f5-901e-00c0-1730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.6575ms - - id: 27 + duration: 70.46ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1925,7 +2294,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -1933,25 +2302,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - bytes=766-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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 1504 + content_length: 933 uncompressed: false - body: "" + body: "Step 1/6 : FROM node:22\n22: Pulling from library/node\n7d98d813d54f: Pulling fs layer\nda802df85c96: Pulling fs layer\n7aadc5092c3b: Pulling fs layer\nad1c7cfc347f: Pulling fs layer\n8c84535501aa: Pulling fs layer\n26a74f209e9a: Pulling fs layer\nb3795637f45e: Pulling fs layer\n18a6c6cb72b7: Pulling fs layer\nad1c7cfc347f: Waiting\n8c84535501aa: Waiting\n26a74f209e9a: Waiting\nb3795637f45e: Waiting\n18a6c6cb72b7: Waiting\nda802df85c96: Verifying Checksum\nda802df85c96: Download complete\n7d98d813d54f: Verifying Checksum\n7d98d813d54f: Download complete\n7aadc5092c3b: Verifying Checksum\n7aadc5092c3b: Download complete\n8c84535501aa: Verifying Checksum\n8c84535501aa: Download complete\nb3795637f45e: Verifying Checksum\nb3795637f45e: Download complete\n18a6c6cb72b7: Verifying Checksum\n18a6c6cb72b7: Download complete\n26a74f209e9a: Verifying Checksum\n26a74f209e9a: Download complete\nad1c7cfc347f: Verifying Checksum\nad1c7cfc347f: Download complete\r\n" headers: Accept-Ranges: - bytes @@ -1960,15 +2333,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1504" + - "933" + Content-Range: + - bytes 766-1698/1699 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:23 GMT + - Tue, 05 Nov 2024 03:10:23 GMT Etag: - - '"0x8DCC31A6B6ED58B"' + - '"0x8DCFD47642D34CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:21 GMT + - Tue, 05 Nov 2024 03:10:24 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -1976,21 +2351,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55cff-701e-004e-1b03-f50e04000000 + - 70b96215-901e-00c0-3730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.5368ms - - id: 28 + status: 206 Partial Content + code: 206 + duration: 71.4464ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1998,7 +2373,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2009,12 +2384,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2022,7 +2397,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1504 + content_length: 1699 uncompressed: false body: "" headers: @@ -2033,15 +2408,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1504" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:24 GMT + - Tue, 05 Nov 2024 03:10:23 GMT Etag: - - '"0x8DCC31A6B6ED58B"' + - '"0x8DCFD47642D34CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:21 GMT + - Tue, 05 Nov 2024 03:10:24 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2049,21 +2424,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55de4-701e-004e-4d03-f50e04000000 + - 70b9623a-901e-00c0-5830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.6979ms - - id: 29 + duration: 70.732ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2071,7 +2446,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2082,12 +2457,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2095,7 +2470,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1699 uncompressed: false body: "" headers: @@ -2106,37 +2481,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:24 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD47642D34CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:24 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55ead-701e-004e-7303-f50e04000000 + - 70b96456-901e-00c0-4d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.3816ms - - id: 30 + duration: 71.8097ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2144,7 +2519,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2152,29 +2527,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=1504-1625 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 1699 uncompressed: false - body: "903681d87777: Pull complete\n3cbbe86a28c2: Pull complete\ncafde2261323: Verifying Checksum\ncafde2261323: Download complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -2183,39 +2554,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "122" - Content-Range: - - bytes 1504-1625/1626 + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:26 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD47642D34CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:24 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55eb5-701e-004e-7a03-f50e04000000 + - 70b9664f-901e-00c0-3030-2fea7b000000 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: 71.6628ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2223,7 +2592,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2234,12 +2603,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2247,7 +2616,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1699 uncompressed: false body: "" headers: @@ -2258,37 +2627,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1699" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:27 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD47642D34CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:24 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55ec2-701e-004e-0403-f50e04000000 + - 70b96893-901e-00c0-5d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.6001ms - - id: 32 + duration: 70.5689ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2296,7 +2665,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2307,12 +2676,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2320,7 +2689,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1784 uncompressed: false body: "" headers: @@ -2331,15 +2700,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:26 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2347,21 +2716,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f55fcd-701e-004e-6b03-f50e04000000 + - 70b96c25-901e-00c0-3630-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.2659ms - - id: 33 + duration: 70.9524ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2369,7 +2738,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2377,25 +2746,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - 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 - method: HEAD + url: https://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 85 uncompressed: false - body: "" + body: "7d98d813d54f: Pull complete\nda802df85c96: Pull complete\n7aadc5092c3b: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -2404,15 +2777,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "85" + Content-Range: + - bytes 1699-1783/1784 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:27 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2420,21 +2795,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f560fd-701e-004e-8003-f50e04000000 + - 70b96c69-901e-00c0-5a30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 91.5453ms - - id: 34 + status: 206 Partial Content + code: 206 + duration: 73.1238ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2442,7 +2817,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2453,12 +2828,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2466,7 +2841,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1784 uncompressed: false body: "" headers: @@ -2477,15 +2852,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:29 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2493,21 +2868,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f561b1-701e-004e-1703-f50e04000000 + - 70b96c9f-901e-00c0-7b30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.7682ms - - id: 35 + duration: 71.4776ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2515,7 +2890,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2526,12 +2901,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2539,7 +2914,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1784 uncompressed: false body: "" headers: @@ -2550,15 +2925,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:30 GMT + - Tue, 05 Nov 2024 03:10:29 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2566,21 +2941,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f562cd-701e-004e-0403-f50e04000000 + - 70b96fae-901e-00c0-3430-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.9091ms - - id: 36 + duration: 71.7082ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2588,7 +2963,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2599,12 +2974,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2612,7 +2987,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1626 + content_length: 1784 uncompressed: false body: "" headers: @@ -2623,15 +2998,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1626" + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:31 GMT + - Tue, 05 Nov 2024 03:10:30 GMT Etag: - - '"0x8DCC31A6D6DE5FD"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:25 GMT + - Tue, 05 Nov 2024 03:10:28 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2639,21 +3014,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f563a5-701e-004e-2a03-f50e04000000 + - 70b97306-901e-00c0-1630-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.9742ms - - id: 37 + duration: 70.7186ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2661,7 +3036,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2672,12 +3047,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2685,7 +3060,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1813 + content_length: 1784 uncompressed: false body: "" headers: @@ -2696,37 +3071,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, 05 Nov 2024 03:10:31 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 05 Nov 2024 03:10:28 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f564ac-701e-004e-1903-f50e04000000 + - 70b9763d-901e-00c0-6530-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.3016ms - - id: 38 + duration: 70.745ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2734,7 +3109,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2742,29 +3117,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=1626-1812 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 187 + content_length: 1784 uncompressed: false - body: "24505dd295d9: Verifying Checksum\n24505dd295d9: Download complete\n6ed93aa58a52: Pull complete\nd59df365b3bf: Verifying Checksum\nd59df365b3bf: Download complete\n787c78da4383: Pull complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -2773,39 +3144,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "187" - Content-Range: - - bytes 1626-1812/1813 + - "1784" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 05 Nov 2024 03:10:32 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 05 Nov 2024 03:10:28 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f564c7-701e-004e-2e03-f50e04000000 + - 70b97937-901e-00c0-4730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 90.9006ms - - id: 39 + status: 200 OK + code: 200 + duration: 72.6184ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2813,7 +3182,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2824,12 +3193,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2837,7 +3206,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1813 + content_length: 1784 uncompressed: false body: "" headers: @@ -2848,37 +3217,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, 05 Nov 2024 03:10:33 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCFD476699802A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 05 Nov 2024 03:10:28 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f564e8-701e-004e-4b03-f50e04000000 + - 70b97c00-901e-00c0-2730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.6675ms - - id: 40 + duration: 60.0022ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2886,7 +3255,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2897,12 +3266,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -2925,11 +3294,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:33 GMT + - Tue, 05 Nov 2024 03:10:34 GMT Etag: - - '"0x8DCC31A71B5B582"' + - '"0x8DCFD476AA4FEC1"' Last-Modified: - - Fri, 23 Aug 2024 02:22:32 GMT + - Tue, 05 Nov 2024 03:10:35 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -2937,21 +3306,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56662-701e-004e-1703-f50e04000000 + - 70b97f4e-901e-00c0-4b30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.6732ms - - id: 41 + duration: 71.4246ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2959,7 +3328,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -2967,25 +3336,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - 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 - method: HEAD + url: https://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 1870 + content_length: 29 uncompressed: false - body: "" + body: "ad1c7cfc347f: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -2994,37 +3367,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1870" + - "29" + Content-Range: + - bytes 1784-1812/1813 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:34 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCFD476AA4FEC1"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:35 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f567cf-701e-004e-6d03-f50e04000000 + - 70b97f88-901e-00c0-6930-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 86.438ms - - id: 42 + status: 206 Partial Content + code: 206 + duration: 65.0819ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3032,7 +3407,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3040,29 +3415,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=1813-1869 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 1813 uncompressed: false - body: "436462401185: Pull complete\nd59df365b3bf: Pull complete\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -3071,39 +3442,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "57" - Content-Range: - - bytes 1813-1869/1870 + - "1813" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:34 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCFD476AA4FEC1"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:35 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f567fa-701e-004e-1603-f50e04000000 + - 70b97fc8-901e-00c0-0730-2fea7b000000 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: 70.931ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3111,7 +3480,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3122,12 +3491,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3135,7 +3504,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1813 uncompressed: false body: "" headers: @@ -3146,37 +3515,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1870" + - "1813" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:36 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCFD476AA4FEC1"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:35 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "7" + - "6" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56816-701e-004e-3103-f50e04000000 + - 70b98347-901e-00c0-5e30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 84.8644ms - - id: 44 + duration: 72.3075ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3184,7 +3553,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3195,12 +3564,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3223,11 +3592,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:36 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Etag: - - '"0x8DCC31A7300E5F6"' + - '"0x8DCFD476BFCA40A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:34 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -3235,21 +3604,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f569e6-701e-004e-5903-f50e04000000 + - 70b98693-901e-00c0-1130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.6852ms - - id: 45 + duration: 67.1141ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3257,7 +3626,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3265,25 +3634,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - 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 - method: HEAD + url: https://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 2312 + content_length: 57 uncompressed: false - body: "" + body: "8c84535501aa: Pull complete\n26a74f209e9a: Pull complete\r\n" headers: Accept-Ranges: - bytes @@ -3292,37 +3665,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2312" + - "57" + Content-Range: + - bytes 1813-1869/1870 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCFD476BFCA40A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56bd1-701e-004e-6a03-f50e04000000 + - 70b986bb-901e-00c0-3230-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.0409ms - - id: 46 + status: 206 Partial Content + code: 206 + duration: 65.1174ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3330,7 +3705,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3338,29 +3713,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=1870-2311 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 442 + content_length: 1870 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: "" headers: Accept-Ranges: - bytes @@ -3369,39 +3740,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "442" - Content-Range: - - bytes 1870-2311/2312 + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCFD476BFCA40A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56c00-701e-004e-1403-f50e04000000 + - 70b986dc-901e-00c0-4d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 86.7559ms - - id: 47 + status: 200 OK + code: 200 + duration: 70.2933ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3409,7 +3778,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3420,12 +3789,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3433,7 +3802,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2312 + content_length: 1870 uncompressed: false body: "" headers: @@ -3444,37 +3813,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2312" + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:38 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCFD476BFCA40A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56c26-701e-004e-3703-f50e04000000 + - 70b988bf-901e-00c0-7130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.2035ms - - id: 48 + duration: 70.6978ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3482,7 +3851,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3493,12 +3862,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3506,7 +3875,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 2312 + content_length: 1870 uncompressed: false body: "" headers: @@ -3517,37 +3886,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "2312" + - "1870" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:38 GMT + - Tue, 05 Nov 2024 03:10:39 GMT Etag: - - '"0x8DCC31A749F3035"' + - '"0x8DCFD476BFCA40A"' Last-Modified: - - Fri, 23 Aug 2024 02:22:37 GMT + - Tue, 05 Nov 2024 03:10:37 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "8" + - "7" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56d8b-701e-004e-7c03-f50e04000000 + - 70b98a57-901e-00c0-5c30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.7006ms - - id: 49 + duration: 69.1143ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3555,7 +3924,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3566,12 +3935,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3579,7 +3948,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 2312 uncompressed: false body: "" headers: @@ -3590,37 +3959,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "2312" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:40 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476D9C72F3"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:40 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56ec7-701e-004e-0603-f50e04000000 + - 70b98c14-901e-00c0-6f30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.2201ms - - id: 50 + duration: 71.9001ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3628,7 +3997,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3641,14 +4010,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e X-Ms-Range: - - bytes=2312-3034 + - 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 + url: https://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -3656,9 +4025,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 723 + content_length: 442 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: "b3795637f45e: Pull complete\n18a6c6cb72b7: Pull complete\nDigest: sha256:de4c8be8232b7081d8846360d73ce6dbff33c6636f2259cd14d82c0de1ac3ff2\nStatus: Downloaded newer image for node:22\n ---> d5175657704e\nStep 2/6 : WORKDIR /app\n ---> Running in 1f967b5e4667\nRemoving intermediate container 1f967b5e4667\n ---> 87c82389e29b\nStep 3/6 : COPY package.json /app\n ---> 2d86c137c5d0\nStep 4/6 : COPY index.js /app\n ---> 4cda3d83d702\nStep 5/6 : EXPOSE 3000\r\n" headers: Accept-Ranges: - bytes @@ -3667,39 +4036,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "723" + - "442" Content-Range: - - bytes 2312-3034/3035 + - bytes 1870-2311/2312 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:40 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476D9C72F3"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:40 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56ef3-701e-004e-2f03-f50e04000000 + - 70b98c31-901e-00c0-0830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 86.644ms - - id: 51 + duration: 72.9204ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3707,7 +4076,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3718,12 +4087,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3731,7 +4100,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3035 + content_length: 2312 uncompressed: false body: "" headers: @@ -3742,37 +4111,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "2312" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:40 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476D9C72F3"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:40 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f56f17-701e-004e-4903-f50e04000000 + - 70b98c51-901e-00c0-2430-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.0914ms - - id: 52 + duration: 70.8122ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3780,7 +4149,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3791,12 +4160,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3819,11 +4188,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:40 GMT + - Tue, 05 Nov 2024 03:10:41 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476EE4C0CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -3831,21 +4200,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5705f-701e-004e-7803-f50e04000000 + - 70b98de1-901e-00c0-8030-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.2373ms - - id: 53 + duration: 57.7491ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3853,7 +4222,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3861,25 +4230,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - 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 - method: HEAD + url: https://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 723 uncompressed: false - body: "" + body: " ---> Running in a88ea7d52d07\nRemoving intermediate container a88ea7d52d07\n ---> 7df8fce5cd94\nStep 6/6 : CMD [\"node\", \"index.js\"]\n ---> Running in c9a4ada304ed\nRemoving intermediate container c9a4ada304ed\n ---> 073e7a7381c0\nSuccessfully built 073e7a7381c0\nSuccessfully tagged acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024\n2024/11/05 03:10:42 Successfully executed container: build\n2024/11/05 03:10:42 Executing step ID: push. Timeout(sec): 3600, Working directory: '', Network: ''\n2024/11/05 03:10:42 Pushing image: acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024, attempt 1\nThe push refers to repository [acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079]\r\n" headers: Accept-Ranges: - bytes @@ -3888,15 +4261,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3035" + - "723" + Content-Range: + - bytes 2312-3034/3035 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:41 GMT + - Tue, 05 Nov 2024 03:10:41 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476EE4C0CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -3904,21 +4279,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f571af-701e-004e-2603-f50e04000000 + - 70b98dfb-901e-00c0-1a30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 85.9807ms - - id: 54 + status: 206 Partial Content + code: 206 + duration: 73.5809ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3926,7 +4301,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -3937,12 +4312,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -3965,11 +4340,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:43 GMT + - Tue, 05 Nov 2024 03:10:41 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476EE4C0CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -3977,21 +4352,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57362-701e-004e-3c03-f50e04000000 + - 70b98e1b-901e-00c0-3830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.9096ms - - id: 55 + duration: 71.521ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3999,7 +4374,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4010,12 +4385,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4038,11 +4413,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:42 GMT Etag: - - '"0x8DCC31A75F59EA5"' + - '"0x8DCFD476EE4C0CD"' Last-Modified: - - Fri, 23 Aug 2024 02:22:39 GMT + - Tue, 05 Nov 2024 03:10:42 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4050,21 +4425,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57542-701e-004e-2e03-f50e04000000 + - 70b98f87-901e-00c0-0830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.3649ms - - id: 56 + duration: 70.7927ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -4072,7 +4447,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4083,12 +4458,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4096,7 +4471,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4107,15 +4482,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:45 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4123,21 +4498,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f576ca-701e-004e-0c03-f50e04000000 + - 70b9913b-901e-00c0-1930-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.2034ms - - id: 57 + duration: 71.9328ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -4145,7 +4520,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4158,14 +4533,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e X-Ms-Range: - - bytes=3035-3536 + - bytes=3035-3557 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -4173,9 +4548,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 502 + content_length: 523 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: "9c57aafe216a: Preparing\n8babf5335586: Preparing\nb584cec60605: Preparing\nc9acc63c6d67: Preparing\n0899b87bcb65: Preparing\ncdca0ec6efb6: Preparing\n0978142130fa: Preparing\nd23b5e6144a7: Preparing\ne5ee1bd83fe3: Preparing\n43da071b5e0c: Preparing\nef5f5ddeb0a6: Preparing\nd23b5e6144a7: Waiting\ne5ee1bd83fe3: Waiting\n43da071b5e0c: Waiting\ncdca0ec6efb6: Waiting\nef5f5ddeb0a6: Waiting\n0978142130fa: Waiting\n8babf5335586: Pushed\nb584cec60605: Pushed\nc9acc63c6d67: Pushed\n9c57aafe216a: Pushed\n0899b87bcb65: Pushed\n0978142130fa: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -4184,17 +4559,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "502" + - "523" Content-Range: - - bytes 3035-3536/3537 + - bytes 3035-3557/3558 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:45 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4202,21 +4577,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f576dd-701e-004e-1e03-f50e04000000 + - 70b99165-901e-00c0-3f30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 87.5272ms - - id: 58 + duration: 62.4739ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -4224,7 +4599,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4235,12 +4610,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4248,7 +4623,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4259,15 +4634,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:45 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4275,21 +4650,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f576eb-701e-004e-2b03-f50e04000000 + - 70b9918d-901e-00c0-6430-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.5814ms - - id: 59 + duration: 70.9428ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -4297,7 +4672,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4308,12 +4683,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4321,7 +4696,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4332,15 +4707,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:46 GMT + - Tue, 05 Nov 2024 03:10:45 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4348,21 +4723,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57803-701e-004e-1803-f50e04000000 + - 70b9935e-901e-00c0-1030-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.913ms - - id: 60 + duration: 71.0081ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -4370,7 +4745,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4381,12 +4756,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4394,7 +4769,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4405,15 +4780,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:47 GMT + - Tue, 05 Nov 2024 03:10:46 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4421,21 +4796,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f578cf-701e-004e-4303-f50e04000000 + - 70b99554-901e-00c0-5f30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.5359ms - - id: 61 + duration: 70.8278ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -4443,7 +4818,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4454,12 +4829,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4467,7 +4842,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4478,15 +4853,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:48 GMT + - Tue, 05 Nov 2024 03:10:47 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4494,21 +4869,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f579ff-701e-004e-4503-f50e04000000 + - 70b99735-901e-00c0-2730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.6043ms - - id: 62 + duration: 59.7808ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -4516,7 +4891,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4527,12 +4902,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4540,7 +4915,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4551,15 +4926,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:49 GMT + - Tue, 05 Nov 2024 03:10:48 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4567,21 +4942,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57b09-701e-004e-2703-f50e04000000 + - 70b99950-901e-00c0-1e30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.7262ms - - id: 63 + duration: 70.9973ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -4589,7 +4964,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4600,12 +4975,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4613,7 +4988,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3537 + content_length: 3558 uncompressed: false body: "" headers: @@ -4624,15 +4999,15 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3537" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:50 GMT + - Tue, 05 Nov 2024 03:10:49 GMT Etag: - - '"0x8DCC31A79308768"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:44 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -4640,21 +5015,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57bdc-701e-004e-5e03-f50e04000000 + - 70b99b30-901e-00c0-6830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.4098ms - - id: 64 + duration: 57.6208ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -4662,7 +5037,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4673,12 +5048,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4686,7 +5061,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3558 uncompressed: false body: "" headers: @@ -4697,37 +5072,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:51 GMT + - Tue, 05 Nov 2024 03:10:50 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57cbc-701e-004e-1c03-f50e04000000 + - 70b99d88-901e-00c0-1230-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.7834ms - - id: 65 + duration: 70.9117ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -4735,7 +5110,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4743,29 +5118,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3537-3579 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 3558 uncompressed: false - body: "7aaeaeabc9cf: Pushed\n916d866d5b0d: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -4774,39 +5145,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "43" - Content-Range: - - bytes 3537-3579/3580 + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:51 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57ccc-701e-004e-2a03-f50e04000000 + - 70b99fca-901e-00c0-3330-2fea7b000000 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: 70.5895ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -4814,7 +5183,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4825,12 +5194,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4838,7 +5207,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3558 uncompressed: false body: "" headers: @@ -4849,37 +5218,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:52 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57ce7-701e-004e-4003-f50e04000000 + - 70b9a1dd-901e-00c0-2830-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.4822ms - - id: 67 + duration: 70.6419ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -4887,7 +5256,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4898,12 +5267,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4911,7 +5280,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3558 uncompressed: false body: "" headers: @@ -4922,37 +5291,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:53 GMT + - Tue, 05 Nov 2024 03:10:53 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57d8c-701e-004e-4503-f50e04000000 + - 70b9a3cd-901e-00c0-8030-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.4343ms - - id: 68 + duration: 71.4955ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -4960,7 +5329,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -4971,12 +5340,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -4984,7 +5353,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3580 + content_length: 3558 uncompressed: false body: "" headers: @@ -4995,37 +5364,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "3558" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:54 GMT + - Tue, 05 Nov 2024 03:10:54 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477045F92F"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:44 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "11" + - "10" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57e6d-701e-004e-7203-f50e04000000 + - 70b9a5f3-901e-00c0-0430-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.2035ms - - id: 69 + duration: 70.5161ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -5033,7 +5402,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5044,12 +5413,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5072,11 +5441,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:55 GMT + - Tue, 05 Nov 2024 03:10:56 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477741A581"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5084,21 +5453,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f57f4c-701e-004e-2c03-f50e04000000 + - 70b9a7f2-901e-00c0-6330-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.9483ms - - id: 70 + duration: 71.6722ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -5106,7 +5475,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5114,25 +5483,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - bytes=3558-3579 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 3580 + content_length: 22 uncompressed: false - body: "" + body: "43da071b5e0c: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -5141,15 +5514,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3580" + - "22" + Content-Range: + - bytes 3558-3579/3580 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:56 GMT + - Tue, 05 Nov 2024 03:10:56 GMT Etag: - - '"0x8DCC31A7D688A06"' + - '"0x8DCFD477741A581"' Last-Modified: - - Fri, 23 Aug 2024 02:22:52 GMT + - Tue, 05 Nov 2024 03:10:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5157,21 +5532,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5801c-701e-004e-5503-f50e04000000 + - 70b9a810-901e-00c0-0130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 86.7587ms - - id: 71 + status: 206 Partial Content + code: 206 + duration: 66.1174ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +5554,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5190,12 +5565,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5203,7 +5578,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3580 uncompressed: false body: "" headers: @@ -5214,37 +5589,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3580" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:56 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD477741A581"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:56 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f580e7-701e-004e-6403-f50e04000000 + - 70b9a83b-901e-00c0-2630-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.2827ms - - id: 72 + duration: 65.619ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -5252,7 +5627,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5260,29 +5635,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3580-3601 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 3580 uncompressed: false - body: "0d80db6a0977: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -5291,39 +5662,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "22" - Content-Range: - - bytes 3580-3601/3602 + - "3580" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:57 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD477741A581"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:56 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f580fd-701e-004e-7603-f50e04000000 + - 70b9aa26-901e-00c0-7430-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 206 Partial Content - code: 206 - duration: 101.0272ms - - id: 73 + status: 200 OK + code: 200 + duration: 55.5394ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -5331,7 +5700,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5342,12 +5711,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5355,7 +5724,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3580 uncompressed: false body: "" headers: @@ -5366,37 +5735,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3580" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:58 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD477741A581"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:56 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58115-701e-004e-0c03-f50e04000000 + - 70b9ac52-901e-00c0-7d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 92.5011ms - - id: 74 + duration: 74.864ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -5404,7 +5773,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5415,12 +5784,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5428,7 +5797,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3602 + content_length: 3580 uncompressed: false body: "" headers: @@ -5439,37 +5808,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "3580" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:22:59 GMT + - Tue, 05 Nov 2024 03:10:59 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD477741A581"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:10:56 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f581bb-701e-004e-1503-f50e04000000 + - 70b9ae1b-901e-00c0-3230-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.5336ms - - id: 75 + duration: 60.2449ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -5477,7 +5846,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5488,12 +5857,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5516,11 +5885,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:00 GMT + - Tue, 05 Nov 2024 03:11:00 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5528,21 +5897,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5834d-701e-004e-7c03-f50e04000000 + - 70b9affc-901e-00c0-6930-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.7588ms - - id: 76 + duration: 72.3115ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -5550,7 +5919,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5558,25 +5927,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - bytes=3580-3601 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: "e5ee1bd83fe3: Pushed\r\n" headers: Accept-Ranges: - bytes @@ -5585,15 +5958,17 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3602" + - "22" + Content-Range: + - bytes 3580-3601/3602 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:01 GMT + - Tue, 05 Nov 2024 03:11:00 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5601,21 +5976,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f584f2-701e-004e-7003-f50e04000000 + - 70b9b01f-901e-00c0-0a30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" - status: 200 OK - code: 200 - duration: 89.5716ms - - id: 77 + status: 206 Partial Content + code: 206 + duration: 64.2136ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -5623,7 +5998,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5634,12 +6009,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5662,11 +6037,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:02 GMT + - Tue, 05 Nov 2024 03:11:00 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5674,21 +6049,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f585ed-701e-004e-4903-f50e04000000 + - 70b9b042-901e-00c0-2a30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.5382ms - - id: 78 + duration: 63.9494ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -5696,7 +6071,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5707,12 +6082,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5735,11 +6110,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:03 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5747,21 +6122,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f586f8-701e-004e-3103-f50e04000000 + - 70b9b20b-901e-00c0-5130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 85.8116ms - - id: 79 + duration: 70.357ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -5769,7 +6144,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5780,12 +6155,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5808,11 +6183,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:04 GMT + - Tue, 05 Nov 2024 03:11:02 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5820,21 +6195,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f587e7-701e-004e-7b03-f50e04000000 + - 70b9b410-901e-00c0-3730-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.2613ms - - id: 80 + duration: 72.3883ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -5842,7 +6217,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5853,12 +6228,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5881,11 +6256,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:05 GMT + - Tue, 05 Nov 2024 03:11:03 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5893,21 +6268,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58902-701e-004e-7503-f50e04000000 + - 70b9b5e2-901e-00c0-7130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.9704ms - - id: 81 + duration: 70.5346ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -5915,7 +6290,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5926,12 +6301,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -5954,11 +6329,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:06 GMT + - Tue, 05 Nov 2024 03:11:05 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -5966,21 +6341,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58a62-701e-004e-2403-f50e04000000 + - 70b9b7f1-901e-00c0-5930-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.0331ms - - id: 82 + duration: 70.8272ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -5988,7 +6363,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -5999,12 +6374,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6027,11 +6402,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:07 GMT + - Tue, 05 Nov 2024 03:11:06 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6039,21 +6414,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58b4f-701e-004e-5c03-f50e04000000 + - 70b9b9cc-901e-00c0-1130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 92.8335ms - - id: 83 + duration: 71.6763ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -6061,7 +6436,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6072,12 +6447,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6100,11 +6475,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:08 GMT + - Tue, 05 Nov 2024 03:11:07 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6112,21 +6487,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58c08-701e-004e-7603-f50e04000000 + - 70b9bc73-901e-00c0-0530-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.7725ms - - id: 84 + duration: 85.0404ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -6134,7 +6509,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6145,12 +6520,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6173,11 +6548,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:10 GMT + - Tue, 05 Nov 2024 03:11:08 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6185,21 +6560,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58cd0-701e-004e-1f03-f50e04000000 + - 70b9bead-901e-00c0-7e30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.232ms - - id: 85 + duration: 71.866ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -6207,7 +6582,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6218,12 +6593,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6246,11 +6621,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:11 GMT + - Tue, 05 Nov 2024 03:11:09 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6258,21 +6633,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58da4-701e-004e-5003-f50e04000000 + - 70b9c0ba-901e-00c0-4d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.5389ms - - id: 86 + duration: 74.5574ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -6280,7 +6655,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6291,12 +6666,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6319,11 +6694,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:12 GMT + - Tue, 05 Nov 2024 03:11:10 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6331,21 +6706,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58e50-701e-004e-6403-f50e04000000 + - 70b9c2e2-901e-00c0-4430-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 94.5186ms - - id: 87 + duration: 70.676ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -6353,7 +6728,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6364,12 +6739,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6392,11 +6767,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:13 GMT + - Tue, 05 Nov 2024 03:11:11 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6404,21 +6779,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f58f01-701e-004e-7103-f50e04000000 + - 70b9c4fd-901e-00c0-3530-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.4894ms - - id: 88 + duration: 70.6765ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -6426,7 +6801,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6437,12 +6812,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6465,11 +6840,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:14 GMT + - Tue, 05 Nov 2024 03:11:12 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6477,21 +6852,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5901f-701e-004e-1803-f50e04000000 + - 70b9c70d-901e-00c0-2130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 89.5394ms - - id: 89 + duration: 70.8476ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -6499,7 +6874,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6510,12 +6885,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6538,11 +6913,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:15 GMT + - Tue, 05 Nov 2024 03:11:13 GMT Etag: - - '"0x8DCC31A80C68AD4"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:22:57 GMT + - Tue, 05 Nov 2024 03:11:01 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6550,21 +6925,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f59102-701e-004e-4903-f50e04000000 + - 70b9c92f-901e-00c0-3130-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.401ms - - id: 90 + duration: 70.4278ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -6572,7 +6947,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6583,12 +6958,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6596,7 +6971,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3602 uncompressed: false body: "" headers: @@ -6607,37 +6982,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3602" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:14 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:01 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f591f5-701e-004e-0e03-f50e04000000 + - 70b9cb3c-901e-00c0-1930-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.0481ms - - id: 91 + duration: 70.5376ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -6645,7 +7020,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6653,29 +7028,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3602-3645 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 3602 uncompressed: false - body: "42073a4c3c76: Pushed\n8f4ceb8cc1a2: Pushed\n\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -6684,39 +7055,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "44" - Content-Range: - - bytes 3602-3645/3646 + - "3602" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:15 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:01 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f59220-701e-004e-3503-f50e04000000 + - 70b9ccc8-901e-00c0-0830-2fea7b000000 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: 70.5093ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -6724,7 +7093,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6735,12 +7104,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6748,7 +7117,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3602 uncompressed: false body: "" headers: @@ -6759,37 +7128,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3602" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:16 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:01 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f59241-701e-004e-5203-f50e04000000 + - 70b9ce96-901e-00c0-2f30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.5453ms - - id: 93 + duration: 69.1547ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -6797,7 +7166,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6808,12 +7177,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6821,7 +7190,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3646 + content_length: 3602 uncompressed: false body: "" headers: @@ -6832,37 +7201,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3646" + - "3602" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:17 GMT + - Tue, 05 Nov 2024 03:11:17 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCFD4779F0A3EB"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:01 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, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f5930e-701e-004e-0603-f50e04000000 + - 70b9d0a9-901e-00c0-0c30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 86.1192ms - - id: 94 + duration: 71.2971ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -6870,7 +7239,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6881,12 +7250,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -6909,11 +7278,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:19 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Etag: - - '"0x8DCC31A8C34DABE"' + - '"0x8DCFD4784BCDEB7"' Last-Modified: - - Fri, 23 Aug 2024 02:23:16 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: @@ -6921,21 +7290,21 @@ interactions: X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f593ed-701e-004e-4503-f50e04000000 + - 70b9d29e-901e-00c0-5c30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 91.9553ms - - id: 95 + duration: 72.1131ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -6943,7 +7312,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -6951,25 +7320,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + X-Ms-Range: + - bytes=3602-3645 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 44 uncompressed: false - body: "" + body: "cdca0ec6efb6: Pushed\nef5f5ddeb0a6: Pushed\n\r\n" headers: Accept-Ranges: - bytes @@ -6978,37 +7351,39 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3668" + - "44" + Content-Range: + - bytes 3602-3645/3646 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Etag: - - '"0x8DCC31A8E339D49"' + - '"0x8DCFD4784BCDEB7"' Last-Modified: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f594bf-701e-004e-7b03-f50e04000000 + - 70b9d2c2-901e-00c0-7c30-2fea7b000000 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: 59.46ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -7016,7 +7391,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7024,29 +7399,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f - X-Ms-Range: - - bytes=3646-3667 + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&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: 3646 uncompressed: false - body: "28e03088bc15: Pushed\r\n" + body: "" headers: Accept-Ranges: - bytes @@ -7055,39 +7426,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "22" - Content-Range: - - bytes 3646-3667/3668 + - "3646" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Etag: - - '"0x8DCC31A8E339D49"' + - '"0x8DCFD4784BCDEB7"' Last-Modified: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f594ce-701e-004e-0803-f50e04000000 + - 70b9d300-901e-00c0-3430-2fea7b000000 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: 57.0887ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -7095,7 +7464,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7106,12 +7475,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -7119,7 +7488,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 3668 + content_length: 3646 uncompressed: false body: "" headers: @@ -7130,37 +7499,37 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "3668" + - "3646" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 05 Nov 2024 03:11:20 GMT Etag: - - '"0x8DCC31A8E339D49"' + - '"0x8DCFD4784BCDEB7"' Last-Modified: - - Fri, 23 Aug 2024 02:23:20 GMT + - Tue, 05 Nov 2024 03:11:19 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "14" + - "13" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - 43f594da-701e-004e-1003-f50e04000000 + - 70b9d4f7-901e-00c0-1a30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.6976ms - - id: 98 + duration: 71.8688ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -7168,7 +7537,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7179,12 +7548,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -7192,7 +7561,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 4750 + content_length: 4748 uncompressed: false body: "" headers: @@ -7203,23 +7572,23 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "4750" + - "4748" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:21 GMT + - Tue, 05 Nov 2024 03:11:21 GMT Etag: - - '"0x8DCC31A8F475A1F"' + - '"0x8DCFD47861DA239"' Last-Modified: - - Fri, 23 Aug 2024 02:23:22 GMT + - Tue, 05 Nov 2024 03:11:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "16" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -7227,15 +7596,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 43f59582-701e-004e-2103-f50e04000000 + - 70b9d707-901e-00c0-1530-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 87.6057ms - - id: 99 + duration: 73.1196ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -7243,7 +7612,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7256,14 +7625,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e X-Ms-Range: - - bytes=3668-4749 + - bytes=3646-4747 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: GET response: proto: HTTP/1.1 @@ -7271,9 +7640,9 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1102 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: "d23b5e6144a7: Pushed\nazd-deploy-1730776024: digest: sha256:9c424addf501c1687d04f2c9b34417ad4fd73d98dc8d6f29a329765f87260122 size: 2624\n2024/11/05 03:11:20 Successfully pushed image: acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024\n2024/11/05 03:11:20 Step ID: build marked as successful (elapsed time in seconds: 21.695755)\n2024/11/05 03:11:20 Populating digests for step ID: build...\n2024/11/05 03:11:21 Successfully populated digests for step ID: build\n2024/11/05 03:11:21 Step ID: push marked as successful (elapsed time in seconds: 38.226548)\n2024/11/05 03:11:21 The following dependencies were found:\n2024/11/05 03:11:21 \n- image:\n registry: acril4dmzxozflko.azurecr.io\n repository: webapp/app-azdtest-w0dc079\n tag: azd-deploy-1730776024\n digest: sha256:9c424addf501c1687d04f2c9b34417ad4fd73d98dc8d6f29a329765f87260122\n runtime-dependency:\n registry: registry.hub.docker.com\n repository: library/node\n tag: \"22\"\n digest: sha256:de4c8be8232b7081d8846360d73ce6dbff33c6636f2259cd14d82c0de1ac3ff2\n git: {}\n\r\nRun ID: ch1 was successful after 1m3s\r\n" headers: Accept-Ranges: - bytes @@ -7282,25 +7651,25 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "1082" + - "1102" Content-Range: - - bytes 3668-4749/4750 + - bytes 3646-4747/4748 Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:21 GMT + - Tue, 05 Nov 2024 03:11:21 GMT Etag: - - '"0x8DCC31A8F475A1F"' + - '"0x8DCFD47861DA239"' Last-Modified: - - Fri, 23 Aug 2024 02:23:22 GMT + - Tue, 05 Nov 2024 03:11:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "16" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -7308,15 +7677,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 43f59594-701e-004e-3103-f50e04000000 + - 70b9d730-901e-00c0-3d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 206 Partial Content code: 206 - duration: 92.6921ms - - id: 100 + duration: 72.1756ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -7324,7 +7693,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: eus2managed192.blob.core.windows.net + host: eus2managed246.blob.core.windows.net remote_addr: "" request_uri: "" body: "" @@ -7335,12 +7704,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e 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://eus2managed246.blob.core.windows.net:443/43d70192c6024e28b49f78cd577b9b3c-jwvpuylrnl/logs/ch1/rawtext.log?se=2024-11-05T04%3A20%3A18Z&sig=SANITIZED&sp=r&sr=b&sv=2023-01-03 method: HEAD response: proto: HTTP/1.1 @@ -7348,7 +7717,7 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 4750 + content_length: 4748 uncompressed: false body: "" headers: @@ -7359,23 +7728,23 @@ interactions: Content-Encoding: - utf-8 Content-Length: - - "4750" + - "4748" Content-Type: - text/plain; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:21 GMT + - Tue, 05 Nov 2024 03:11:21 GMT Etag: - - '"0x8DCC31A8F475A1F"' + - '"0x8DCFD47861DA239"' Last-Modified: - - Fri, 23 Aug 2024 02:23:22 GMT + - Tue, 05 Nov 2024 03:11:21 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Blob-Committed-Block-Count: - - "16" + - "15" X-Ms-Blob-Type: - AppendBlob X-Ms-Creation-Time: - - Fri, 23 Aug 2024 02:22:16 GMT + - Tue, 05 Nov 2024 03:10:18 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: @@ -7383,15 +7752,15 @@ interactions: X-Ms-Meta-Complete: - successful X-Ms-Request-Id: - - 43f595af-701e-004e-4803-f50e04000000 + - 70b9d751-901e-00c0-5d30-2fea7b000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 90.903ms - - id: 101 + duration: 72.9267ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -7412,10 +7781,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/runs/ch1?api-version=2019-06-01-preview method: GET response: proto: HTTP/2.0 @@ -7423,18 +7792,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 985 + content_length: 988 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":"Succeeded","lastUpdatedTime":"2024-11-05T03:11:22+00:00","runType":"QuickRun","createTime":"2024-11-05T03:10:17.9290727+00:00","startTime":"2024-11-05T03:10:18.2639976+00:00","finishTime":"2024-11-05T03:11:22.4766288+00:00","outputImages":[{"registry":"acril4dmzxozflko.azurecr.io","repository":"webapp/app-azdtest-w0dc079","tag":"azd-deploy-1730776024","digest":"sha256:9c424addf501c1687d04f2c9b34417ad4fd73d98dc8d6f29a329765f87260122"}],"platform":{"os":"Linux","architecture":"amd64"},"agentConfiguration":{"cpu":2},"provisioningState":"Succeeded","isArchiveEnabled":false},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/runs/ch1","name":"ch1","systemData":{"lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:10:17.6032855+00:00"}}' headers: Cache-Control: - no-cache Content-Length: - - "985" + - "988" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:23 GMT + - Tue, 05 Nov 2024 03:11:22 GMT Expires: - "-1" Pragma: @@ -7446,19 +7815,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - f6ea92ce-87b6-48aa-96ef-f4195c4c5443 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022323Z:b59226b7-8b27-43fc-90cc-d25322b16d67 + - WESTUS2:20241105T031122Z:926c1d7e-ff4f-4b13-ac42-f3d4955f67be X-Msedge-Ref: - - 'Ref A: 679871CF8B3B4C709D681D1FF72079A6 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:22Z' + - 'Ref A: 2A62BCF8672A4BAF8B7B7165283A2463 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:22Z' status: 200 OK code: 200 - duration: 697.7717ms - - id: 102 + duration: 386.8823ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -7479,10 +7850,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7490,20 +7861,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3725 + content_length: 3872 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-w0dc079/providers/Microsoft.App/containerapps/app-il4dmzxozflko","name":"app-il4dmzxozflko","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:09:42.3279906","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:09:42.3279906"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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.249.216"],"latestRevisionName":"app-il4dmzxozflko--l6tf65j","latestReadyRevisionName":"app-il4dmzxozflko--l6tf65j","latestRevisionFqdn":"app-il4dmzxozflko--l6tf65j.jollymoss-79cff62b.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-il4dmzxozflko.jollymoss-79cff62b.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":"acril4dmzxozflko.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"}],"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-w0dc079/containerApps/app-il4dmzxozflko/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81","clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3725" + - "3872" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:24 GMT + - Tue, 05 Nov 2024 03:11:22 GMT Expires: - "-1" Pragma: @@ -7517,21 +7888,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 2ba64a7f-43d1-4464-8a5a-5fdc52b17d5a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022324Z:0b000eff-a394-43f9-9b76-de8b0aef10a5 + - WESTUS2:20241105T031123Z:2ba64a7f-43d1-4464-8a5a-5fdc52b17d5a X-Msedge-Ref: - - 'Ref A: 775E0AADAEF54EF1AEA449F3FF2C06C1 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:24Z' + - 'Ref A: 18E2478A33054846A70684C6F56F9F21 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:22Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 581.2746ms - - id: 103 + duration: 555.3975ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -7552,10 +7925,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko/revisions/app-il4dmzxozflko--l6tf65j?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7565,10 +7938,10 @@ interactions: trailer: {} content_length: 826 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-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko/revisions/app-il4dmzxozflko--l6tf65j","name":"app-il4dmzxozflko--l6tf65j","type":"Microsoft.App/containerapps/revisions","properties":{"createdTime":"2024-11-05T03:09:49+00:00","fqdn":"app-il4dmzxozflko--l6tf65j.jollymoss-79cff62b.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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -7576,7 +7949,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:25 GMT + - Tue, 05 Nov 2024 03:11:24 GMT Expires: - "-1" Pragma: @@ -7590,32 +7963,34 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - b59011f1-2596-426e-b9b8-5a0a49db2368 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022325Z:2a465796-f5dd-4235-a413-cfcc427a5dd3 + - WESTUS2:20241105T031124Z:b59011f1-2596-426e-b9b8-5a0a49db2368 X-Msedge-Ref: - - 'Ref A: 6FF7D206B45444BFA4314D154B990878 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:24Z' + - 'Ref A: 9C2BB4029DE74297B590A08861E8659E Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:23Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 832.4236ms - - id: 104 + duration: 1.4760072s + - id: 109 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3421 + content_length: 3568 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-w0dc079/providers/Microsoft.App/containerapps/app-il4dmzxozflko","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286","principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81"}}},"location":"East US 2","name":"app-il4dmzxozflko","properties":{"configuration":{"activeRevisionsMode":"Single","ingress":{"allowInsecure":false,"exposedPort":0,"external":true,"fqdn":"app-il4dmzxozflko.jollymoss-79cff62b.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-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko","passwordSecretRef":"","server":"acril4dmzxozflko.azurecr.io","username":""}]},"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/containerApps/app-il4dmzxozflko/eventstream","latestReadyRevisionName":"app-il4dmzxozflko--l6tf65j","latestRevisionFqdn":"app-il4dmzxozflko--l6tf65j.jollymoss-79cff62b.eastus2.azurecontainerapps.io","latestRevisionName":"app-il4dmzxozflko--l6tf65j","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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.249.216"],"provisioningState":"Succeeded","template":{"containers":[{"image":"acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024","name":"app","probes":[],"resources":{"cpu":0.5,"memory":"1Gi"}}],"revisionSuffix":"azd-1730776024","scale":{"maxReplicas":10,"minReplicas":1}},"workloadProfileName":"consumption"},"systemData":{"createdAt":"2024-11-05T03:09:42.3279906Z","createdBy":"hemarina@microsoft.com","createdByType":"User","lastModifiedAt":"2024-11-05T03:09:42.3279906Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User"},"tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"},"type":"Microsoft.App/containerApps"}' form: {} headers: Accept: @@ -7625,14 +8000,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "3421" + - "3568" 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko?api-version=2023-11-02-preview method: PATCH response: proto: HTTP/2.0 @@ -7645,19 +8020,19 @@ interactions: body: "" headers: Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview 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/51d19388-d71b-471f-bb03-b50039c09672?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638663730864335837&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=0VZX0JNVxmsyiej8TUcmVgtRGj7Qwd06aP4epRlOx3GVV3G4yq8W_U8HWTQjsevjXEKj3jvqnrhrpYu0CBSooM4NPZtxJxP36_J7vRMcBZI8UPGXhfvCL-zPrdHCNA43tAY4V6Blu6XmyH3VrE5kjuvlb_XgpNg031Xih5f73Gvrte4oDf2I3u29RFHMRKkdbEKpiX0pieEyLUj24tTi48r_rN_O8wSTgFy322uTdAlUqNqWPbMzyA4yLK0_2bhZvODqQJ-690ZZ5tbGqk1ZwMhBK0EvcJmUOaCVh5RQZ8HK7QZQQa8VhCcK4SbD4REQoUbBnZdptAuJ0bHSOLn0BQ&h=QOwUzpQuQy0aMyB7ek_lizV6YGEtZeOXh0d0WJu7qMA Cache-Control: - no-cache Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:23:27 GMT + - Tue, 05 Nov 2024 03:11:25 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/51d19388-d71b-471f-bb03-b50039c09672?api-version=2023-11-02-preview&t=638663730864492067&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=lumnE06kQEL6CW9SmUbge4CqlY1pKPqWr9MOvptVerRV2EoCoww4jX42JOKpBNVLPze9P--eeriWsqAh40f3ZHu_rg9lD6IJ9XWw-15JXGWW4ge1U_9ocdZkb24vIqxt7bJr1gMqb7mEmR5yjN7rroh3YWBP_C43yResGQMxE9E0Egi2jSAvgOjvUveJVmBmglXwoGOvymQmP-3XUXv1q6en-tAH0FfXmTR4XUpaEpjbctqCXspeexlWklebe9tBph2En7ONNK55NGX1btqlb2ZG_6l2NInbvAS8xYZKVxNr2FA9yE0nMT2ZVYfSZWaCXdI1O69Z-KH9ObNXVe3pCA&h=xJGifGxLUw6mtYhbu7AvkeridhZpSHfe2cH-J-KAadU Pragma: - no-cache Retry-After: @@ -7669,21 +8044,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - f80b7750-7fa3-4766-aa34-67b1012a2278 + - e271c8d1-465b-4dce-aadf-67e5e234d120 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022328Z:f80b7750-7fa3-4766-aa34-67b1012a2278 + - WESTUS2:20241105T031126Z:e271c8d1-465b-4dce-aadf-67e5e234d120 X-Msedge-Ref: - - 'Ref A: 0C7A9EDA46DD4C1382DDCFD2DBCACA92 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:25Z' + - 'Ref A: CE777269E61749AEA35D04222B1C48AB Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:24Z' X-Powered-By: - ASP.NET status: 202 Accepted code: 202 - duration: 2.5331961s - - id: 105 + duration: 1.5507359s + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -7702,10 +8077,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/51d19388-d71b-471f-bb03-b50039c09672?api-version=2023-11-02-preview&azureAsyncOperation=true&t=638663730864335837&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=0VZX0JNVxmsyiej8TUcmVgtRGj7Qwd06aP4epRlOx3GVV3G4yq8W_U8HWTQjsevjXEKj3jvqnrhrpYu0CBSooM4NPZtxJxP36_J7vRMcBZI8UPGXhfvCL-zPrdHCNA43tAY4V6Blu6XmyH3VrE5kjuvlb_XgpNg031Xih5f73Gvrte4oDf2I3u29RFHMRKkdbEKpiX0pieEyLUj24tTi48r_rN_O8wSTgFy322uTdAlUqNqWPbMzyA4yLK0_2bhZvODqQJ-690ZZ5tbGqk1ZwMhBK0EvcJmUOaCVh5RQZ8HK7QZQQa8VhCcK4SbD4REQoUbBnZdptAuJ0bHSOLn0BQ&h=QOwUzpQuQy0aMyB7ek_lizV6YGEtZeOXh0d0WJu7qMA method: GET response: proto: HTTP/2.0 @@ -7715,10 +8090,10 @@ 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/51d19388-d71b-471f-bb03-b50039c09672","name":"51d19388-d71b-471f-bb03-b50039c09672","status":"Succeeded","startTime":"2024-11-05T03:11:26.3318415"}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: @@ -7726,7 +8101,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:43 GMT + - Tue, 05 Nov 2024 03:11:41 GMT Expires: - "-1" Pragma: @@ -7740,21 +8115,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 320ace17-3571-48ed-8117-469688d6e250 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022343Z:a9227710-f1c9-4653-91b1-d61776fbc050 + - WESTUS2:20241105T031141Z:320ace17-3571-48ed-8117-469688d6e250 X-Msedge-Ref: - - 'Ref A: 30E3975E604541EDB3409CF69ADD808A Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:43Z' + - 'Ref A: 004318D793CA4024B3BF875DB5BB82D6 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:41Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 390.62ms - - id: 106 + duration: 409.0052ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -7773,10 +8150,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7784,20 +8161,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3836 + content_length: 3983 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-w0dc079/providers/Microsoft.App/containerapps/app-il4dmzxozflko","name":"app-il4dmzxozflko","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:09:42.3279906","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:11:25.9335878"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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.249.216"],"latestRevisionName":"app-il4dmzxozflko--azd-1730776024","latestReadyRevisionName":"app-il4dmzxozflko--l6tf65j","latestRevisionFqdn":"app-il4dmzxozflko--azd-1730776024.jollymoss-79cff62b.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-il4dmzxozflko.jollymoss-79cff62b.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":"acril4dmzxozflko.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1730776024","terminationGracePeriodSeconds":null,"containers":[{"image":"acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024","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-w0dc079/containerApps/app-il4dmzxozflko/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81","clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3836" + - "3983" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:43 GMT + - Tue, 05 Nov 2024 03:11:41 GMT Expires: - "-1" Pragma: @@ -7811,21 +8188,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - f5e06174-4e3e-490a-b5aa-931e824361d9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022344Z:4a92afdd-9918-42bf-8b97-3c97a65cbc81 + - WESTUS2:20241105T031142Z:f5e06174-4e3e-490a-b5aa-931e824361d9 X-Msedge-Ref: - - 'Ref A: FF36FDC764714634814B8E4355253542 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:43Z' + - 'Ref A: FE1290C6F5704ADC9364C9597B84D1A0 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:41Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 530.4889ms - - id: 107 + duration: 421.0364ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -7846,10 +8225,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -7857,20 +8236,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3836 + content_length: 3983 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-w0dc079/providers/Microsoft.App/containerapps/app-il4dmzxozflko","name":"app-il4dmzxozflko","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:09:42.3279906","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:11:25.9335878"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","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.249.216"],"latestRevisionName":"app-il4dmzxozflko--azd-1730776024","latestReadyRevisionName":"app-il4dmzxozflko--l6tf65j","latestRevisionFqdn":"app-il4dmzxozflko--azd-1730776024.jollymoss-79cff62b.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"app-il4dmzxozflko.jollymoss-79cff62b.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":"acril4dmzxozflko.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"azd-1730776024","terminationGracePeriodSeconds":null,"containers":[{"image":"acril4dmzxozflko.azurecr.io/webapp/app-azdtest-w0dc079:azd-deploy-1730776024","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-w0dc079/containerApps/app-il4dmzxozflko/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81","clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286"}}}}' 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 + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3836" + - "3983" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:44 GMT + - Tue, 05 Nov 2024 03:11:42 GMT Expires: - "-1" Pragma: @@ -7884,21 +8263,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 01395ef6-15fa-4195-956a-9f8a952e3cfb X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022344Z:ea6c9def-0417-4d5f-9fa7-8acc6e2d0864 + - WESTUS2:20241105T031142Z:01395ef6-15fa-4195-956a-9f8a952e3cfb X-Msedge-Ref: - - 'Ref A: 07E7C9C3510A4DF99EA2D2AACFA516AF Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:44Z' + - 'Ref A: E5860D2A0B5F4350BCCAAD85FE698371 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:42Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 682.4493ms - - id: 108 + duration: 426.9784ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -7919,10 +8300,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b5f094a7df94dada37a02db98fe7469e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0dc079%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -7932,7 +8313,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-w0dc079","name":"rg-azdtest-w0dc079","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","DeleteAfter":"2024-11-05T04:07:41Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -7941,7 +8322,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:23:44 GMT + - Tue, 05 Nov 2024 03:11:42 GMT Expires: - "-1" Pragma: @@ -7953,19 +8334,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fb4dfd78240a0c5e7bec9c7b63db67f + - b5f094a7df94dada37a02db98fe7469e + 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 + - 69927462-1015-4794-9716-a4435185ffa6 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022344Z:a1fe65b5-7e45-4f59-9d86-6d8ed0e7fa44 + - WESTUS2:20241105T031142Z:69927462-1015-4794-9716-a4435185ffa6 X-Msedge-Ref: - - 'Ref A: ED7A6612D24B48EB9CC4A0F8187867F6 Ref B: CO1EDGE1410 Ref C: 2024-08-23T02:23:44Z' + - 'Ref A: 3F2414ADA6A94BDF888192EA41E1DD35 Ref B: CO6AA3150219045 Ref C: 2024-11-05T03:11:42Z' status: 200 OK code: 200 - duration: 78.5114ms - - id: 109 + duration: 54.5283ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -7973,7 +8356,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io + host: app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io remote_addr: "" request_uri: "" body: "" @@ -7985,7 +8368,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io:443/ + url: https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io:443/ method: GET response: proto: HTTP/2.0 @@ -8002,11 +8385,11 @@ interactions: Content-Type: - text/plain Date: - - Fri, 23 Aug 2024 02:27:44 GMT + - Tue, 05 Nov 2024 03:15:42 GMT status: 504 Gateway Timeout code: 504 - duration: 4m0.2906404s - - id: 110 + duration: 4m0.2909389s + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -8014,7 +8397,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io + host: app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io remote_addr: "" request_uri: "" body: "" @@ -8026,7 +8409,7 @@ interactions: - SANITIZED User-Agent: - Go-http-client/1.1 - url: https://app-hdcsusgdiumec.icypebble-38e1316e.eastus2.azurecontainerapps.io:443/ + url: https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io:443/ method: GET response: proto: HTTP/2.0 @@ -8043,11 +8426,11 @@ interactions: Content-Type: - text/plain Date: - - Fri, 23 Aug 2024 02:27:45 GMT + - Tue, 05 Nov 2024 03:15:43 GMT status: 200 OK code: 200 - duration: 94.2217ms - - id: 111 + duration: 85.947ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -8068,9 +8451,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 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 +8462,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2130752 + content_length: 1854740 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=pZHdboJAEIWfxb3WhBXaVO%2fEXRMqM8AyS6N3Ri3yE0haDbDGdy%2fY%2bgL1amYyZzLfybmyfV2ds%2bqyO2d1RXVxrL7Z%2fMo%2bZEw6nrJ5dSnLMZOLv%2fHKqmN7Dndf52w4WB87Nmd89DZC2rRgNhM2vitU3Tx2fGqNVLFyQaRNpLcCdOSgcF0lShFZyQq0tJBcEVGyRDp8Ko6BH1tNIHSv27dICxuN1wIVHRppY8Y1WXxFZf9R1J0SnhPk7xLvvbTBLJqAihZFT3N7sA%2bm%2foHuPIvu9LY5kGeANjZ0XKsE9YCbSHiFQrlKnvy4SFvIhzlq0UADonDQpNMBfymR1MLX8SOLIRqpVRDK%2f3lynoiDPB4QvIDQNuQbC%2fLUDmK%2bjjT62poFv75mkkwfy8rdJvIUUt73kodUHMJh32vdoUK%2b7zCd9BHdbj8%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024","location":"eastus2","name":"azdtest-w0dc079-1730776024","properties":{"correlationId":"34b4039785725d5f23526ae986f93b4e","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079","resourceName":"rg-azdtest-w0dc079","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT2M18.565943S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/providers/Microsoft.Authorization/roleAssignments/a7758fdc-f1de-501c-bcf8-12cc2347e2bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko"}],"outputs":{"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acril4dmzxozflko.azurecr.io"},"websitE_URL":{"type":"String","value":"https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io/"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:41Z"},"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"7771222558848349697","timestamp":"2024-11-05T03:10:01.7700223Z"},"tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "2130752" + - "1854740" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:54 GMT + - Tue, 05 Nov 2024 03:15:54 GMT Expires: - "-1" Pragma: @@ -8102,19 +8485,155 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - a60d4d2e-87dd-4ce3-9ad7-409066d568a9 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022755Z:4dc94be2-8d4d-45b0-86c5-34b73bf39e82 + - WESTUS2:20241105T031554Z:a60d4d2e-87dd-4ce3-9ad7-409066d568a9 X-Msedge-Ref: - - 'Ref A: 1500129F8AA74A37826A97997C0E743F Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:48Z' + - 'Ref A: F4AB599041EA496DA811C7FB6EF40EE3 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:15:47Z' status: 200 OK code: 200 - duration: 6.9798197s - - id: 112 + duration: 7.4237091s + - id: 117 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=pZHdboJAEIWfxb3WhBXaVO%2fEXRMqM8AyS6N3Ri3yE0haDbDGdy%2fY%2bgL1amYyZzLfybmyfV2ds%2bqyO2d1RXVxrL7Z%2fMo%2bZEw6nrJ5dSnLMZOLv%2fHKqmN7Dndf52w4WB87Nmd89DZC2rRgNhM2vitU3Tx2fGqNVLFyQaRNpLcCdOSgcF0lShFZyQq0tJBcEVGyRDp8Ko6BH1tNIHSv27dICxuN1wIVHRppY8Y1WXxFZf9R1J0SnhPk7xLvvbTBLJqAihZFT3N7sA%2bm%2foHuPIvu9LY5kGeANjZ0XKsE9YCbSHiFQrlKnvy4SFvIhzlq0UADonDQpNMBfymR1MLX8SOLIRqpVRDK%2f3lynoiDPB4QvIDQNuQbC%2fLUDmK%2bjjT62poFv75mkkwfy8rdJvIUUt73kodUHMJh32vdoUK%2b7zCd9BHdbj8%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1814451 + 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=xZHbaoNAEIafxb02oNFC8U6zK03N7Mbd2ZT0LlhbjKKlNZg1%2bO71kDxDr2b%2bA8wHcyNZU7dFfTm1RVNjU%2bb1LwluhIUKtVpPa51f2%2f3ppy2mRpIbEhDXerY4Hq%2fQH1fEnhuy6R6Z6%2fiWLOMI6FeX6ncKOvU5jSJJK5o6hxg0czhGNMXDhuPHp3S52CmnE1SPvcwAhmvowyegWzPPjctVHKWAjZGUeXAuXaChy6frg31n%2fTdUQbcO9KU3ovpgRlT2nYjzKwPMjEDdjahGhKsZ9Y0pZFqKPSNBfakqm0yOVt5D6kQJjS8PuaTjG5byhnGU4U6rxRiGPw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1814451" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:15:59 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 186bb931-3444-4dca-8a8c-29aa5d254b5c + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031600Z:186bb931-3444-4dca-8a8c-29aa5d254b5c + X-Msedge-Ref: + - 'Ref A: 17F754D2C66F462AADD94F7DC198BEDC Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:15:55Z' + status: 200 OK + code: 200 + duration: 5.5967826s + - id: 118 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZHbaoNAEIafxb02oNFC8U6zK03N7Mbd2ZT0LlhbjKKlNZg1%2bO71kDxDr2b%2bA8wHcyNZU7dFfTm1RVNjU%2bb1LwluhIUKtVpPa51f2%2f3ppy2mRpIbEhDXerY4Hq%2fQH1fEnhuy6R6Z6%2fiWLOMI6FeX6ncKOvU5jSJJK5o6hxg0czhGNMXDhuPHp3S52CmnE1SPvcwAhmvowyegWzPPjctVHKWAjZGUeXAuXaChy6frg31n%2fTdUQbcO9KU3ovpgRlT2nYjzKwPMjEDdjahGhKsZ9Y0pZFqKPSNBfakqm0yOVt5D6kQJjS8PuaTjG5byhnGU4U6rxRiGPw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1210749 + 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=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1210749" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:16:03 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - af57aa91-e089-49d2-bd1f-ffd4e1b8d332 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031604Z:af57aa91-e089-49d2-bd1f-ffd4e1b8d332 + X-Msedge-Ref: + - 'Ref A: DB85AF9DA1914CA48422EBC4422F6B98 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:00Z' + status: 200 OK + code: 200 + duration: 3.370754s + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -8133,10 +8652,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=xZJLb8IwDIB%2fCzmD1JRqQtzaJmgb2CVp0qncUMc6KGqlUdQH4r8v4aFNO26HnRLHTvT5c04kq8p6Wx7X9bYqVVVsygOZngj3Y6Vj127LTVsv1x%2f11lbMNx2ZEjqYDFClLfTpiAwvFbJq7jnqTAaymAXA8kboFQMtPGRBINmeCSeZgeYOqoAJlYSoXt8kxWgRO03EtKnLOmSawq5wkXEKSncYUoxnwUroQ4t91UnGxybfouI0YvmInIc33v%2fCdUHlHvRZZ4S0N1wBKmuj3TM3axcZVGCpC2J0wQ199JlvJZNpedzvh%2bSFW%2bG%2fa8D1%2fuLbePQ9Myvj%2bqkHlY6ho1omqC18wuEBChlI%2fr6Ii7yFnY2FmQM0wAoP%2b9y1%2fi1%2byFFJf2G7%2bOqJaxkt%2bfcTHY%2fvoZ7HkVaP9%2fDqwHy66%2fUf753Pnw%3d%3d method: GET response: proto: HTTP/2.0 @@ -8144,18 +8663,152 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 385740 + content_length: 160397 + 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=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "160397" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:16:05 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 4f95cc79-7c28-4af0-9f1e-ce47266a9295 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031605Z:4f95cc79-7c28-4af0-9f1e-ce47266a9295 + X-Msedge-Ref: + - 'Ref A: C068372CF09D424B81E484596414C1A6 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:04Z' + status: 200 OK + code: 200 + duration: 1.4237038s + - 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-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRT4MwFIV%2fC32GBDYeDG%2bFlqis7WhvZ%2bbbgmgQUoyyMLbw37XbahZ9POd%2b9%2baec0JVb4bG7HdD0xvo29p8oeSEKFag1QIlZt91%2flU69UTt0GKmPgzr3efQ2O2inlCCIu%2fO47A9sOM2QP6ZkP3oZlEYe7LNU0bexlI%2fE6bLmJM0laQjZbjJmaYhh5SUsMk4vLzKiIuVCkdB9A9XTQzwQpCHkB3bJTvimE0RV%2fSjEO%2bPlEE1CdAjI3gSOAjQ7KNcYp7RjHKQeOX%2bV0LD%2fdWzOS4ZM8wxwTa4c2zOf5g1qZZiTW8xrZZO6uJ838lLWb9N%2frk3z98%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5320 + 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=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5320" + Content-Type: + - application/json; charset=utf-8 + Date: + - Tue, 05 Nov 2024 03:16:05 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 888be15e-76da-4c08-87f0-022531346651 + X-Ms-Routing-Request-Id: + - WESTUS2:20241105T031606Z:888be15e-76da-4c08-87f0-022531346651 + X-Msedge-Ref: + - 'Ref A: 65F715F46F3B45A0BF3C9880B899C3F4 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:05Z' + status: 200 OK + code: 200 + duration: 527.5651ms + - id: 121 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBRb4MgFIV%2fizzXRLs%2bNL6hYJa1QIFLF%2ffWONe4Gkw2G7WN%2f33SjmXZnrjn3I%2fD5V5R2dqutudDV7cW2lNlP1FyRc9Ug9GustXQ7Q4fXe2ATTWiBMXBOuBQDOxShGhxI1Tb%2b14crQN1ylNGjr00L4QZueIkTRVpiIz2OTM04pASCfuMw%2bubirnY6qgXxMxcOXJilgyOK3Ypx%2fmFgWcx13kqGZSDeH%2bi8zkKoDEjxZLJMETTAlHsxl2ixJ6bxkuvcoV5RjPKQeGtN7Uw8PjtuY%2feL2aYY4JdmnfcIv5hzqRGiR39jRn94KXZ3PK9vG%2fzZ7w%2fedP0BQ%3d%3d + 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: - - "385740" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:56 GMT + - Tue, 05 Nov 2024 03:16:06 GMT Expires: - "-1" Pragma: @@ -8167,19 +8820,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - f3ed521c-3ae1-4c4e-90c5-3d175a5db54e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022757Z:ce5886bb-3ff7-4859-9e3e-dc909701ded9 + - WESTUS2:20241105T031606Z:f3ed521c-3ae1-4c4e-90c5-3d175a5db54e X-Msedge-Ref: - - 'Ref A: E965001B9AFD45B2813CDDF6699D5BF9 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:55Z' + - 'Ref A: 96FEDBB58E464FB3AA3E32DF615F1D3B Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:06Z' status: 200 OK code: 200 - duration: 2.168465s - - id: 113 + duration: 431.1769ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -8200,10 +8855,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8211,18 +8866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2783 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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:41Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:10:01.7700223Z","duration":"PT2M18.565943S","correlationId":"34b4039785725d5f23526ae986f93b4e","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-w0dc079","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0dc079"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acril4dmzxozflko.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/providers/Microsoft.Authorization/roleAssignments/a7758fdc-f1de-501c-bcf8-12cc2347e2bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2783" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:56 GMT + - Tue, 05 Nov 2024 03:16:06 GMT Expires: - "-1" Pragma: @@ -8234,19 +8889,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 5e961852-2b72-4bbb-b755-6319e7197ca3 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022757Z:015d819c-de9d-41ff-b93a-d4c9754899ac + - WESTUS2:20241105T031606Z:5e961852-2b72-4bbb-b755-6319e7197ca3 X-Msedge-Ref: - - 'Ref A: AA2743493BB44251AA9F7C6F88FCB309 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:57Z' + - 'Ref A: 73098A9ABCBE4DDA8A3F87BF9640485F Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:06Z' status: 200 OK code: 200 - duration: 415.8388ms - - id: 114 + duration: 207.256ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -8267,10 +8924,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0dc079%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8280,7 +8937,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-w0dc079","name":"rg-azdtest-w0dc079","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","DeleteAfter":"2024-11-05T04:07:41Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -8289,7 +8946,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:57 GMT + - Tue, 05 Nov 2024 03:16:06 GMT Expires: - "-1" Pragma: @@ -8301,19 +8958,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 3651087c-26f7-492e-a89f-db4e0a42b65c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022757Z:2be3b5be-18a2-47f7-88a6-65bf6b45e7aa + - WESTUS2:20241105T031607Z:3651087c-26f7-492e-a89f-db4e0a42b65c X-Msedge-Ref: - - 'Ref A: A9ED9EB89371488CB7D4CC22AAF6F877 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:57Z' + - 'Ref A: 1DB43A368C804189B2930CF99DEC6208 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:07Z' status: 200 OK code: 200 - duration: 67.2791ms - - id: 115 + duration: 43.9071ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -8334,10 +8993,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8345,18 +9004,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2589 + content_length: 2601 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-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko","name":"law-il4dmzxozflko","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko","name":"mi-il4dmzxozflko","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko","name":"acril4dmzxozflko","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:07:53.7142194Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:07:53.7142194Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","name":"cae-il4dmzxozflko","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:07.3366443Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:08:07.3366443Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko","name":"app-il4dmzxozflko","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81","clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286"}}},"tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:09:42.3279906Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:11:25.9335878Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2589" + - "2601" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:57 GMT + - Tue, 05 Nov 2024 03:16:06 GMT Expires: - "-1" Pragma: @@ -8368,19 +9027,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 9f483ec3-780d-4e82-91b8-716d603e3858 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022758Z:47c0174a-6c22-4e59-a2b4-df31ea863a3c + - WESTUS2:20241105T031607Z:9f483ec3-780d-4e82-91b8-716d603e3858 X-Msedge-Ref: - - 'Ref A: E40BA1D8CB3C43A68FBD8A4C03628A2F Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:58Z' + - 'Ref A: 64782B1857234B61A7AA81A77CB843F7 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:07Z' status: 200 OK code: 200 - duration: 551.3032ms - - id: 116 + duration: 195.9255ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -8401,10 +9062,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8412,18 +9073,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2783 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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:41Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:10:01.7700223Z","duration":"PT2M18.565943S","correlationId":"34b4039785725d5f23526ae986f93b4e","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-w0dc079","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0dc079"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acril4dmzxozflko.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/providers/Microsoft.Authorization/roleAssignments/a7758fdc-f1de-501c-bcf8-12cc2347e2bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2783" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:58 GMT + - Tue, 05 Nov 2024 03:16:06 GMT Expires: - "-1" Pragma: @@ -8435,19 +9096,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 973db4fa-f7e3-4bd5-8f4e-0e1a0279d899 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022758Z:fed9041e-2824-4801-aa11-24abd8d7e04e + - WESTUS2:20241105T031607Z:973db4fa-f7e3-4bd5-8f4e-0e1a0279d899 X-Msedge-Ref: - - 'Ref A: 04198DF520584E87B1A22D57F4E831CA Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:58Z' + - 'Ref A: 50B8A6860C62413B97DAAE00A086A436 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:07Z' status: 200 OK code: 200 - duration: 362.7515ms - - id: 117 + duration: 400.2875ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -8468,10 +9131,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w0dc079%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8481,7 +9144,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-w0dc079","name":"rg-azdtest-w0dc079","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","DeleteAfter":"2024-11-05T04:07:41Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -8490,7 +9153,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:58 GMT + - Tue, 05 Nov 2024 03:16:07 GMT Expires: - "-1" Pragma: @@ -8502,19 +9165,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 98310d0f-fc42-4d79-a668-74272bd9e443 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022759Z:ac8a3026-3a00-4abe-9270-5296c8f5dcd8 + - WESTUS2:20241105T031607Z:98310d0f-fc42-4d79-a668-74272bd9e443 X-Msedge-Ref: - - 'Ref A: 27EC08289F6245E5977AF6CE0A01749E Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:59Z' + - 'Ref A: 15C0851014154AE399EFC13506F1EEE8 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:07Z' status: 200 OK code: 200 - duration: 83.6056ms - - id: 118 + duration: 64.5664ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -8535,10 +9200,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8546,18 +9211,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2589 + content_length: 2601 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-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko","name":"law-il4dmzxozflko","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko","name":"mi-il4dmzxozflko","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko","name":"acril4dmzxozflko","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:07:53.7142194Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:07:53.7142194Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko","name":"cae-il4dmzxozflko","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:08:07.3366443Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:08:07.3366443Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko","name":"app-il4dmzxozflko","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko":{"principalId":"078565b9-c971-464d-9c3e-7e7a1a78bd81","clientId":"4e769994-c996-41b7-b0fa-a90ce5fb0286"}}},"tags":{"azd-env-name":"azdtest-w0dc079","azd-service-name":"app"},"systemData":{"createdBy":"hemarina@microsoft.com","createdByType":"User","createdAt":"2024-11-05T03:09:42.3279906Z","lastModifiedBy":"hemarina@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-05T03:11:25.9335878Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2589" + - "2601" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:27:58 GMT + - Tue, 05 Nov 2024 03:16:07 GMT Expires: - "-1" Pragma: @@ -8569,19 +9234,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 8aeefa96-125a-4008-8627-3d582e96a54a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022759Z:f52b5312-2f22-40ba-b326-b57d6771cde7 + - WESTUS2:20241105T031607Z:8aeefa96-125a-4008-8627-3d582e96a54a X-Msedge-Ref: - - 'Ref A: B06FBE6FE99D474EABFAE54EEA749BA2 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:59Z' + - 'Ref A: 2598E46DC8234328AE9D36DF900D4472 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:07Z' status: 200 OK code: 200 - duration: 595.2283ms - - id: 119 + duration: 183.6936ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -8602,10 +9269,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w0dc079?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -8622,11 +9289,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:28:00 GMT + - Tue, 05 Nov 2024 03:16:08 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMERDMDc5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663744421074336&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=dvltC7H-CNGGPErf9nSRKNeTl7H0G-lF_GgCGLAQ8Dkx0n9ZkQhLMZZkmKtOkxRELMmuivmcafxWXzY7pmD9YbNCc2s64UyWaCw5lksssqnlHL1ow26hWy8gO1foCSKSMl4jeQg0BvI8IHiTVN7IbcDBRao9gyQueZFBfNnBYGpTGVsEA7fD3K8fAG4Kbh3m2JZkZJ7sE9IWsKZcVN7F6O4bkMsfNmRcsIH5yz9hM8kLFB7t_vXeBB8GYkyFWYk8HTGshNcvS4bWBBgo9LQ3ghGQHS7aZIrz81SYKLA_FZTyGdGbEiEXGRWUyjjKK5P6Jbu9h8Mz7fWuF3kvvb94dw&h=952wxMWooo8BsW8ks7fweM3M-po60WMnUbpKze0qxKo Pragma: - no-cache Retry-After: @@ -8638,19 +9305,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 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 + - 9ee2c580-0ba3-481a-8bd6-b57356c0ee7f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T022801Z:fb7ad2ba-af46-41a5-ae6b-d19cf281084e + - WESTUS2:20241105T031609Z:9ee2c580-0ba3-481a-8bd6-b57356c0ee7f X-Msedge-Ref: - - 'Ref A: 91DDBF9870134981B1713471EF03A085 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:27:59Z' + - 'Ref A: C4AE3A5516444D67BD1E45AE9D10B3B5 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:16:07Z' status: 202 Accepted code: 202 - duration: 1.5159571s - - id: 120 + duration: 1.2864875s + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -8669,10 +9338,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXMERDMDc5LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663744421074336&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=dvltC7H-CNGGPErf9nSRKNeTl7H0G-lF_GgCGLAQ8Dkx0n9ZkQhLMZZkmKtOkxRELMmuivmcafxWXzY7pmD9YbNCc2s64UyWaCw5lksssqnlHL1ow26hWy8gO1foCSKSMl4jeQg0BvI8IHiTVN7IbcDBRao9gyQueZFBfNnBYGpTGVsEA7fD3K8fAG4Kbh3m2JZkZJ7sE9IWsKZcVN7F6O4bkMsfNmRcsIH5yz9hM8kLFB7t_vXeBB8GYkyFWYk8HTGshNcvS4bWBBgo9LQ3ghGQHS7aZIrz81SYKLA_FZTyGdGbEiEXGRWUyjjKK5P6Jbu9h8Mz7fWuF3kvvb94dw&h=952wxMWooo8BsW8ks7fweM3M-po60WMnUbpKze0qxKo method: GET response: proto: HTTP/2.0 @@ -8689,7 +9358,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 02:49:17 GMT + - Tue, 05 Nov 2024 03:34:16 GMT Expires: - "-1" Pragma: @@ -8701,19 +9370,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 78e18bcf-f235-4b4f-bdc4-55c9db72dd52 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024917Z:130ebe45-9fda-4317-8440-023c3029a78a + - WESTUS2:20241105T033417Z:78e18bcf-f235-4b4f-bdc4-55c9db72dd52 X-Msedge-Ref: - - 'Ref A: 151093429900463DB43C7056C743DFF0 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:17Z' + - 'Ref A: 07954204D9D145C898DE13F015C8F49F Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:34:17Z' status: 200 OK code: 200 - duration: 218.329ms - - id: 121 + duration: 178.7111ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -8734,10 +9405,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8745,18 +9416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2784 + content_length: 2783 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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w0dc079","azd-provision-param-hash":"f1bd502f931be3d636105696d0b6ebabeef9501f2ad34de905bc86e7964144ab"},"properties":{"templateHash":"7771222558848349697","parameters":{"environmentName":{"type":"String","value":"azdtest-w0dc079"},"location":{"type":"String","value":"eastus2"},"deleteAfterTime":{"type":"String","value":"2024-11-05T04:07:41Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:10:01.7700223Z","duration":"PT2M18.565943S","correlationId":"34b4039785725d5f23526ae986f93b4e","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-w0dc079","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w0dc079"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"websitE_URL":{"type":"String","value":"https://app-il4dmzxozflko.jollymoss-79cff62b.eastus2.azurecontainerapps.io/"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acril4dmzxozflko.azurecr.io"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/containerApps/app-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.App/managedEnvironments/cae-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ContainerRegistry/registries/acril4dmzxozflko/providers/Microsoft.Authorization/roleAssignments/a7758fdc-f1de-501c-bcf8-12cc2347e2bc"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-il4dmzxozflko"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w0dc079/providers/Microsoft.OperationalInsights/workspaces/law-il4dmzxozflko"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "2784" + - "2783" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:17 GMT + - Tue, 05 Nov 2024 03:34:16 GMT Expires: - "-1" Pragma: @@ -8768,19 +9439,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 9c3b188f-07e2-4e77-b2b4-0cfd006e904a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024917Z:fa7ea7b1-3068-4f28-bacf-7dc2c161c0b7 + - WESTUS2:20241105T033417Z:9c3b188f-07e2-4e77-b2b4-0cfd006e904a X-Msedge-Ref: - - 'Ref A: E19C67990CEC4E9F81E4304976650436 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:17Z' + - 'Ref A: 763378238111402095510CC089BEC387 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:34:17Z' status: 200 OK code: 200 - duration: 404.3311ms - - id: 122 + duration: 204.4227ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -8791,7 +9464,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-w0dc079"}}' form: {} headers: Accept: @@ -8805,10 +9478,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -8818,10 +9491,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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w0dc079"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-05T03:34:20.4037295Z","duration":"PT0.0007572S","correlationId":"5b70b27b6a7dbc058187c435412d4c35","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-w0dc079-1730776024/operationStatuses/08584708292273618979?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -8829,7 +9502,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:19 GMT + - Tue, 05 Nov 2024 03:34:20 GMT Expires: - "-1" Pragma: @@ -8841,21 +9514,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.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 + - 69ca5567-1a8c-476c-9b91-f1489efbf18d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024920Z:3cf23182-37e9-4139-8b85-46a172baacb8 + - WESTUS2:20241105T033420Z:69ca5567-1a8c-476c-9b91-f1489efbf18d X-Msedge-Ref: - - 'Ref A: B79076F8CC7D450FB88F5CE3581A107E Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:18Z' + - 'Ref A: B0ABEAADD52B46CABA203C695132148F Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:34:17Z' status: 200 OK code: 200 - duration: 2.3741541s - - id: 123 + duration: 3.3471321s + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -8874,10 +9549,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024/operationStatuses/08584708292273618979?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8896,7 +9571,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 02:49:50 GMT + - Tue, 05 Nov 2024 03:34:50 GMT Expires: - "-1" Pragma: @@ -8908,19 +9583,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 98356033-3f43-43e0-9130-466f642ab6d2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024951Z:7be49a4a-2dbd-44dc-903a-a71f07801902 + - WESTUS2:20241105T033451Z:98356033-3f43-43e0-9130-466f642ab6d2 X-Msedge-Ref: - - 'Ref A: B60C3AA33E69493A8ACB400F36EFD0C7 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:50Z' + - 'Ref A: 0A8DEF3AE2744DC4961EA3CA8ABDFC99 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:34:51Z' status: 200 OK code: 200 - duration: 389.2139ms - - id: 124 + duration: 386.9765ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -8939,10 +9616,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - 5b70b27b6a7dbc058187c435412d4c35 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w0dc079-1730776024?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -8950,18 +9627,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-w0dc079-1730776024","name":"azdtest-w0dc079-1730776024","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w0dc079"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-05T03:34:23.1574526Z","duration":"PT2.7544803S","correlationId":"5b70b27b6a7dbc058187c435412d4c35","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, 05 Nov 2024 03:34:51 GMT Expires: - "-1" Pragma: @@ -8973,19 +9650,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81994add06076efbdab09e2694c271f1 + - 5b70b27b6a7dbc058187c435412d4c35 + 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 + - 3c0f7b08-d8d6-478c-bd59-e663247be7ba X-Ms-Routing-Request-Id: - - WESTUS2:20240823T024951Z:14337653-7c76-4db4-a5f7-1804842c31b2 + - WESTUS2:20241105T033451Z:3c0f7b08-d8d6-478c-bd59-e663247be7ba X-Msedge-Ref: - - 'Ref A: FC6EF62344BB4804955375F76E504F45 Ref B: CO1EDGE1316 Ref C: 2024-08-23T02:49:51Z' + - 'Ref A: 6ADAEE9E6D504E2199AC3E52BAB23BB0 Ref B: CO6AA3150219047 Ref C: 2024-11-05T03:34:51Z' status: 200 OK code: 200 - duration: 227.1933ms + duration: 186.7206ms --- -env_name: azdtest-w1574a7 +env_name: azdtest-w0dc079 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724379555" +time: "1730776024" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml index 202180eec8b..185a698f5e3 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_Up_ResourceGroupScope.yaml @@ -12,7 +12,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","name":"rg-azdtest-we54632","tags":{"DeleteAfter":"2024-08-23T01:29:37Z"}}' + body: '{"location":"eastus2","name":"rg-azdtest-wc1fd84","tags":{"DeleteAfter":"2024-11-04T20:32:35Z"}}' form: {} headers: Accept: @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.21.6; Windows_NT) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632?api-version=2021-04-01 + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -37,7 +37,7 @@ interactions: trailer: {} content_length: 280 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632","name":"rg-azdtest-we54632","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-08-23T01:29:37Z"},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84","name":"rg-azdtest-wc1fd84","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"2024-11-04T20:32:35Z"},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -46,7 +46,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:39 GMT + - Mon, 04 Nov 2024 19:32:38 GMT Expires: - "-1" Pragma: @@ -58,18 +58,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 366b83d1-4488-4865-9b72-b575dc5d5ae5 + - 3d207f1c-ee80-400c-a41f-c3f4a99f4aa2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 366b83d1-4488-4865-9b72-b575dc5d5ae5 + - 3d207f1c-ee80-400c-a41f-c3f4a99f4aa2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002940Z:366b83d1-4488-4865-9b72-b575dc5d5ae5 + - WESTUS2:20241104T193238Z:3d207f1c-ee80-400c-a41f-c3f4a99f4aa2 X-Msedge-Ref: - - 'Ref A: C3BC3EAA9A2C489CBAB333C80E1E9996 Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:29:39Z' + - 'Ref A: DC2E94CFCF454BF9A0FAD8AE46DFF48F Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:32:37Z' status: 201 Created code: 201 - duration: 1.0331484s + duration: 1.1998134s - id: 1 request: proto: HTTP/1.1 @@ -91,9 +93,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 + - 45c4c438af925948acb15b4091831c2d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -102,18 +104,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:43 GMT + - Mon, 04 Nov 2024 19:32:45 GMT Expires: - "-1" Pragma: @@ -125,18 +127,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 + - 45c4c438af925948acb15b4091831c2d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - 227d3702-a728-4e9b-8832-2f037b458277 + - e1ace449-6345-46b4-9505-4150b80fb499 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002944Z:227d3702-a728-4e9b-8832-2f037b458277 + - WESTUS2:20241104T193245Z:e1ace449-6345-46b4-9505-4150b80fb499 X-Msedge-Ref: - - 'Ref A: 8137D42F2EBA4CE5AEDBAEFBFC9E5F36 Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:29:42Z' + - 'Ref A: 54CB69B02FB64F969D28D6BC4398DC58 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:32:42Z' status: 200 OK code: 200 - duration: 2.4584263s + duration: 3.107331s - id: 2 request: proto: HTTP/1.1 @@ -158,10 +162,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - 45c4c438af925948acb15b4091831c2d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -180,7 +184,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:44 GMT + - Mon, 04 Nov 2024 19:32:45 GMT Expires: - "-1" Pragma: @@ -192,18 +196,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 + - 45c4c438af925948acb15b4091831c2d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7d171e6c-352b-45e5-bfd2-eb334a4f6ae9 + - 04ccd206-d40f-4621-9cee-e3040bd7ac5a X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002944Z:7d171e6c-352b-45e5-bfd2-eb334a4f6ae9 + - WESTUS2:20241104T193245Z:04ccd206-d40f-4621-9cee-e3040bd7ac5a X-Msedge-Ref: - - 'Ref A: B6B83B10DBCA4C6EAF492EBA54D6390C Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:29:44Z' + - 'Ref A: 1F568F6667E4434CBFDECF306F768011 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:32:45Z' status: 200 OK code: 200 - duration: 293.8608ms + duration: 108.3646ms - id: 3 request: proto: HTTP/1.1 @@ -215,7 +221,80 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-we54632"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"15667564252437020024"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-we54632","azd-provision-param-hash":"a701794843307d1007592081ab07521c6cb45f5c124290bbfce7831cdf512a40"}}' + body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wc1fd84"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"15667564252437020024"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-wc1fd84","azd-provision-param-hash":"d386ef97230d3cfbf798d45a684d964da6133895461619ce2cf4b4c76d300942"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1457" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - 45c4c438af925948acb15b4091831c2d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745/validate?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1031 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745","name":"azdtest-wc1fd84-1730748745","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-wc1fd84","azd-provision-param-hash":"d386ef97230d3cfbf798d45a684d964da6133895461619ce2cf4b4c76d300942"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-wc1fd84"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"45c4c438af925948acb15b4091831c2d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Storage/storageAccounts/stcbe2skuuoelpo"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1031" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 19:32:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 45c4c438af925948acb15b4091831c2d + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 735d0145-3fcd-4327-8c96-e9544bb88ffa + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T193247Z:735d0145-3fcd-4327-8c96-e9544bb88ffa + X-Msedge-Ref: + - 'Ref A: 1D6FA920665A4AE1AAA851D9B12103AA Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:32:45Z' + status: 200 OK + code: 200 + duration: 2.0528167s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1457 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-wc1fd84"},"location":{"value":"eastus2"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"15667564252437020024"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"Primary location for all resources"}}},"variables":{"resourceToken":"[toLower(uniqueString(resourceGroup().id, parameters(''environmentName''), parameters(''location'')))]"},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2022-05-01","name":"[format(''st{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","kind":"StorageV2","sku":{"name":"Standard_LRS"}}],"outputs":{"STORAGE_ACCOUNT_ID":{"type":"string","value":"[resourceId(''Microsoft.Storage/storageAccounts'', format(''st{0}'', variables(''resourceToken'')))]"},"STORAGE_ACCOUNT_NAME":{"type":"string","value":"[format(''st{0}'', variables(''resourceToken''))]"}}}},"tags":{"azd-env-name":"azdtest-wc1fd84","azd-provision-param-hash":"d386ef97230d3cfbf798d45a684d964da6133895461619ce2cf4b4c76d300942"}}' form: {} headers: Accept: @@ -229,10 +308,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970?api-version=2021-04-01 + - 45c4c438af925948acb15b4091831c2d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -242,10 +321,10 @@ interactions: trailer: {} content_length: 868 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970","name":"azdtest-we54632-1724372970","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-we54632","azd-provision-param-hash":"a701794843307d1007592081ab07521c6cb45f5c124290bbfce7831cdf512a40"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-we54632"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-08-23T00:29:47.7172309Z","duration":"PT0.0005185S","correlationId":"9169f5e0765cf1af217e6f2df9f550b6","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745","name":"azdtest-wc1fd84-1730748745","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-wc1fd84","azd-provision-param-hash":"d386ef97230d3cfbf798d45a684d964da6133895461619ce2cf4b4c76d300942"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-wc1fd84"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T19:32:51.3599212Z","duration":"PT0.0006218S","correlationId":"45c4c438af925948acb15b4091831c2d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970/operationStatuses/08584772338987961341?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745/operationStatuses/08584708581163032713?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -253,7 +332,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:47 GMT + - Mon, 04 Nov 2024 19:32:51 GMT Expires: - "-1" Pragma: @@ -265,21 +344,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 + - 45c4c438af925948acb15b4091831c2d X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - "799" X-Ms-Request-Id: - - 691d3de8-e138-4d6d-be37-7521c6c32535 + - 11889101-55a8-45b8-87b9-e6ef854219a2 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002948Z:691d3de8-e138-4d6d-be37-7521c6c32535 + - WESTUS2:20241104T193252Z:11889101-55a8-45b8-87b9-e6ef854219a2 X-Msedge-Ref: - - 'Ref A: 3A3E44BA76D440799A2D0779E28931DD Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:29:45Z' + - 'Ref A: 48F9C115E3AF4054812F061376F3DB93 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:32:47Z' status: 201 Created code: 201 - duration: 3.425561s - - id: 4 + duration: 4.4085008s + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -298,10 +379,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970/operationStatuses/08584772338987961341?api-version=2021-04-01 + - 45c4c438af925948acb15b4091831c2d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745/operationStatuses/08584708581163032713?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -320,7 +401,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:18 GMT + - Mon, 04 Nov 2024 19:33:22 GMT Expires: - "-1" Pragma: @@ -332,19 +413,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 + - 45c4c438af925948acb15b4091831c2d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 7b14c3a4-9a6a-485d-a0f7-8c2a7d824b4a + - 71eb413a-5506-4cba-b346-bdf7b2445884 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003019Z:7b14c3a4-9a6a-485d-a0f7-8c2a7d824b4a + - WESTUS2:20241104T193322Z:71eb413a-5506-4cba-b346-bdf7b2445884 X-Msedge-Ref: - - 'Ref A: 8914912B34DF4A308F87371AE8BB72F5 Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:30:18Z' + - 'Ref A: E85C14C277A7446CB7F7DC0B3FA478C2 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:33:22Z' status: 200 OK code: 200 - duration: 403.2253ms - - id: 5 + duration: 186.4123ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -363,10 +446,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970?api-version=2021-04-01 + - 45c4c438af925948acb15b4091831c2d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -374,18 +457,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1318 + content_length: 1317 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970","name":"azdtest-we54632-1724372970","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-we54632","azd-provision-param-hash":"a701794843307d1007592081ab07521c6cb45f5c124290bbfce7831cdf512a40"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-we54632"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:30:10.7896744Z","duration":"PT23.072962S","correlationId":"9169f5e0765cf1af217e6f2df9f550b6","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Storage/storageAccounts/sti4i7hlq7wcjwo"},"storagE_ACCOUNT_NAME":{"type":"String","value":"sti4i7hlq7wcjwo"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Storage/storageAccounts/sti4i7hlq7wcjwo"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745","name":"azdtest-wc1fd84-1730748745","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-wc1fd84","azd-provision-param-hash":"d386ef97230d3cfbf798d45a684d964da6133895461619ce2cf4b4c76d300942"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-wc1fd84"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:33:16.39959Z","duration":"PT25.0402906S","correlationId":"45c4c438af925948acb15b4091831c2d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Storage/storageAccounts/stcbe2skuuoelpo"},"storagE_ACCOUNT_NAME":{"type":"String","value":"stcbe2skuuoelpo"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Storage/storageAccounts/stcbe2skuuoelpo"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1318" + - "1317" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:18 GMT + - Mon, 04 Nov 2024 19:33:22 GMT Expires: - "-1" Pragma: @@ -397,19 +480,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9169f5e0765cf1af217e6f2df9f550b6 + - 45c4c438af925948acb15b4091831c2d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11998" + - "1099" X-Ms-Request-Id: - - ba19fc48-1771-4abc-8a7b-ee51138557c0 + - 8a4484f9-8793-45f0-a1a3-967fdab62326 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003019Z:ba19fc48-1771-4abc-8a7b-ee51138557c0 + - WESTUS2:20241104T193323Z:8a4484f9-8793-45f0-a1a3-967fdab62326 X-Msedge-Ref: - - 'Ref A: 882F143BD5954271B5CEA021D92D99DD Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:30:19Z' + - 'Ref A: 8703B91422E4404D910B217775511C6B Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:33:22Z' status: 200 OK code: 200 - duration: 358.859ms - - id: 6 + duration: 210.901ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -430,10 +515,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - da49777604e6374a2011e5bfc80467c2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -441,18 +526,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1330 + content_length: 1329 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Resources/deployments/azdtest-we54632-1724372970","name":"azdtest-we54632-1724372970","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-we54632","azd-provision-param-hash":"a701794843307d1007592081ab07521c6cb45f5c124290bbfce7831cdf512a40"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-we54632"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-08-23T00:30:10.7896744Z","duration":"PT23.072962S","correlationId":"9169f5e0765cf1af217e6f2df9f550b6","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Storage/storageAccounts/sti4i7hlq7wcjwo"},"storagE_ACCOUNT_NAME":{"type":"String","value":"sti4i7hlq7wcjwo"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Storage/storageAccounts/sti4i7hlq7wcjwo"}]}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Resources/deployments/azdtest-wc1fd84-1730748745","name":"azdtest-wc1fd84-1730748745","type":"Microsoft.Resources/deployments","tags":{"azd-env-name":"azdtest-wc1fd84","azd-provision-param-hash":"d386ef97230d3cfbf798d45a684d964da6133895461619ce2cf4b4c76d300942"},"properties":{"templateHash":"15667564252437020024","parameters":{"environmentName":{"type":"String","value":"azdtest-wc1fd84"},"location":{"type":"String","value":"eastus2"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T19:33:16.39959Z","duration":"PT25.0402906S","correlationId":"45c4c438af925948acb15b4091831c2d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"storagE_ACCOUNT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Storage/storageAccounts/stcbe2skuuoelpo"},"storagE_ACCOUNT_NAME":{"type":"String","value":"stcbe2skuuoelpo"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Storage/storageAccounts/stcbe2skuuoelpo"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1330" + - "1329" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:21 GMT + - Mon, 04 Nov 2024 19:33:26 GMT Expires: - "-1" Pragma: @@ -464,19 +549,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 + - da49777604e6374a2011e5bfc80467c2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 1553cd04-a0db-421b-b398-f05eeabddcf4 + - 9c005328-3495-40ca-9fe0-fec8ef5d9458 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003022Z:1553cd04-a0db-421b-b398-f05eeabddcf4 + - WESTUS2:20241104T193327Z:9c005328-3495-40ca-9fe0-fec8ef5d9458 X-Msedge-Ref: - - 'Ref A: F49B265667C1493686A6DCE0FDE1F79B Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:30:21Z' + - 'Ref A: 04A620C04DEF442E91CB7D7076DCA268 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:33:26Z' status: 200 OK code: 200 - duration: 478.9615ms - - id: 7 + duration: 358.8765ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -497,10 +584,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/resources?api-version=2021-04-01 + - da49777604e6374a2011e5bfc80467c2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -510,7 +597,7 @@ interactions: trailer: {} content_length: 332 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-we54632/providers/Microsoft.Storage/storageAccounts/sti4i7hlq7wcjwo","name":"sti4i7hlq7wcjwo","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-wc1fd84/providers/Microsoft.Storage/storageAccounts/stcbe2skuuoelpo","name":"stcbe2skuuoelpo","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{}}]}' headers: Cache-Control: - no-cache @@ -519,7 +606,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:21 GMT + - Mon, 04 Nov 2024 19:33:26 GMT Expires: - "-1" Pragma: @@ -531,19 +618,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 + - da49777604e6374a2011e5bfc80467c2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - 4f003627-af73-4ad3-8b8c-aa622d15da9b + - 56cd8805-10e4-47ff-b780-bd440a17eec0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003022Z:4f003627-af73-4ad3-8b8c-aa622d15da9b + - WESTUS2:20241104T193327Z:56cd8805-10e4-47ff-b780-bd440a17eec0 X-Msedge-Ref: - - 'Ref A: FDA6118195754C63BE9D5F59522907BF Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:30:22Z' + - 'Ref A: 2686296823EE49BB95B1D3188304C231 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:33:27Z' status: 200 OK code: 200 - duration: 593.0549ms - - id: 8 + duration: 355.2681ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -564,10 +653,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-we54632?api-version=2021-04-01 + - da49777604e6374a2011e5bfc80467c2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-wc1fd84?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -584,11 +673,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:30:23 GMT + - Mon, 04 Nov 2024 19:33:27 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRTU0NjMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599699473717982&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=K4QxkRb28m3kf66numeb0HZZDQrZyhlO9mk2DJYtott8nji3wsPlqi4SmQY66nms-AY_5Y2AGfXRtCJAbFS7zBgInASR7JrouS3rAlrAHpJJl61ZDPsig8vKsKgk_TodoXGlxuAhOSieOvuXhF-T7r3Q6fkmaeRAWgHgrNEXFLO5K1aBqslRNzYYzm0_vWLF_qEi1vaDrxmLEHr7zaXkAYxUlzkb9ZiigkkQ2K2ZdWSe4G36UFrBMC2NMb0XrsU7bHYOBEM7octQeVFCMrEgaY_OOkHerqhjzsFlu0x0ZIdbprxddE24BUA7aTQnTs_6CFnxkEpkfDiNqCrfx8DgVg&h=j_qBGaktfqWtpyptlibHOdK8lXbCohUV7CKB3CwnolA + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQzFGRDg0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663456696002743&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=pOnuv088edRyVbzjpTiwgWCTGu6lRRb_4IDPejdJnEoGtMeSWVktPyYxeDcdMN3_0LYPgjrMFqKb2WqTydWK12QhhGqhoHIg6212KjJyuSH1n2Lp3J1VUe9nJz-kRAviuqjyMi-0rM0GGnv44Ir2zbw3pUbj8LVYw9zdldW1e86jI57qKUtKLlA04n53eijr6g1PToYSUOrTzSxGRa0dsWP2d3JXQD5eUS5hnfwPK_vc0WRlvoBvzhXkdY51HSrEPY4T-bnfgsLMmyDrzB2Zcxjt323aW4zouddspUFsioQeDDbr92vWTWsgvrbs9ZHwRuYQeWhfTExyteCAEaexIQ&h=P4-Pa03uEbtV2ydUu3P1m_GU-1onjGBZMhz99Fxfgbg Pragma: - no-cache Retry-After: @@ -600,19 +689,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 + - da49777604e6374a2011e5bfc80467c2 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - - "14999" + - "799" + X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: + - "11999" X-Ms-Request-Id: - - ff8026be-284c-448d-9dff-fae1d0f8ce77 + - cf09e94c-81cc-4942-85ae-f503b7ad92a0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003024Z:ff8026be-284c-448d-9dff-fae1d0f8ce77 + - WESTUS2:20241104T193328Z:cf09e94c-81cc-4942-85ae-f503b7ad92a0 X-Msedge-Ref: - - 'Ref A: DE7626096E9243B29E933600A957D899 Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:30:22Z' + - 'Ref A: 9494236F01214A628DA46A6AD74935A6 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:33:27Z' status: 202 Accepted code: 202 - duration: 1.7804178s - - id: 9 + duration: 928.0611ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -631,10 +722,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXRTU0NjMyLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638599699473717982&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=K4QxkRb28m3kf66numeb0HZZDQrZyhlO9mk2DJYtott8nji3wsPlqi4SmQY66nms-AY_5Y2AGfXRtCJAbFS7zBgInASR7JrouS3rAlrAHpJJl61ZDPsig8vKsKgk_TodoXGlxuAhOSieOvuXhF-T7r3Q6fkmaeRAWgHgrNEXFLO5K1aBqslRNzYYzm0_vWLF_qEi1vaDrxmLEHr7zaXkAYxUlzkb9ZiigkkQ2K2ZdWSe4G36UFrBMC2NMb0XrsU7bHYOBEM7octQeVFCMrEgaY_OOkHerqhjzsFlu0x0ZIdbprxddE24BUA7aTQnTs_6CFnxkEpkfDiNqCrfx8DgVg&h=j_qBGaktfqWtpyptlibHOdK8lXbCohUV7CKB3CwnolA + - da49777604e6374a2011e5bfc80467c2 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXQzFGRDg0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663456696002743&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=pOnuv088edRyVbzjpTiwgWCTGu6lRRb_4IDPejdJnEoGtMeSWVktPyYxeDcdMN3_0LYPgjrMFqKb2WqTydWK12QhhGqhoHIg6212KjJyuSH1n2Lp3J1VUe9nJz-kRAviuqjyMi-0rM0GGnv44Ir2zbw3pUbj8LVYw9zdldW1e86jI57qKUtKLlA04n53eijr6g1PToYSUOrTzSxGRa0dsWP2d3JXQD5eUS5hnfwPK_vc0WRlvoBvzhXkdY51HSrEPY4T-bnfgsLMmyDrzB2Zcxjt323aW4zouddspUFsioQeDDbr92vWTWsgvrbs9ZHwRuYQeWhfTExyteCAEaexIQ&h=P4-Pa03uEbtV2ydUu3P1m_GU-1onjGBZMhz99Fxfgbg method: GET response: proto: HTTP/2.0 @@ -651,7 +742,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:32:42 GMT + - Mon, 04 Nov 2024 19:34:44 GMT Expires: - "-1" Pragma: @@ -663,19 +754,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d9f88d7e8f3fd837f9ea2da9a49117f5 + - da49777604e6374a2011e5bfc80467c2 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "11999" + - "1099" X-Ms-Request-Id: - - b3521bce-5431-405d-b59a-b632c00f788d + - 59ae9292-df99-48dc-a80a-ba509f2ab214 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003242Z:b3521bce-5431-405d-b59a-b632c00f788d + - WESTUS2:20241104T193444Z:59ae9292-df99-48dc-a80a-ba509f2ab214 X-Msedge-Ref: - - 'Ref A: 06B0A70DB628491CA5DF3D97E0DA9AE2 Ref B: CO6AA3150218047 Ref C: 2024-08-23T00:32:42Z' + - 'Ref A: F49DA940CAC944AF8C56FA0D1668E242 Ref B: CO6AA3150220017 Ref C: 2024-11-04T19:34:44Z' status: 200 OK code: 200 - duration: 180.1452ms + duration: 238.4517ms --- -env_name: azdtest-we54632 +env_name: azdtest-wc1fd84 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372970" +time: "1730748745" diff --git a/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml b/cli/azd/test/functional/testdata/recordings/Test_StorageBlobClient.yaml index a40742af649..1d5468cc2b5 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b878dfbea2a29d5aa692132a6f4ea386 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35367 + content_length: 35781 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/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' headers: Cache-Control: - no-cache Content-Length: - - "35367" + - "35781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:43 GMT + - Mon, 04 Nov 2024 18:30:27 GMT Expires: - "-1" Pragma: @@ -56,30 +56,509 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 158de86b-83b3-4e6f-b19d-978952c4636a + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183028Z:158de86b-83b3-4e6f-b19d-978952c4636a + X-Msedge-Ref: + - 'Ref A: 828F00CC1884454C8E5A234D1D608924 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:24Z' + status: 200 OK + code: 200 + duration: 3.3983447s + - id: 1 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + 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: 1783205 + 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=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1783205" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30: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: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" + X-Ms-Request-Id: + - da5bfc8e-335f-46e2-8fe5-f016ec9b135b + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183036Z:da5bfc8e-335f-46e2-8fe5-f016ec9b135b + X-Msedge-Ref: + - 'Ref A: 443C76440A0A406EBE03C459716241EF Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:28Z' + status: 200 OK + code: 200 + duration: 8.036658s + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1738781 + 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1738781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30: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: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 283b8b2c-dbde-43bd-85d6-f1107b72c98c + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183041Z:283b8b2c-dbde-43bd-85d6-f1107b72c98c + X-Msedge-Ref: + - 'Ref A: 60333A540B5741D691771DC414EC0418 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:36Z' + status: 200 OK + code: 200 + duration: 5.4873287s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1207133 + 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=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1207133" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30: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: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 63b55702-e00e-44e8-b6b5-addf417fd4b5 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183045Z:63b55702-e00e-44e8-b6b5-addf417fd4b5 + X-Msedge-Ref: + - 'Ref A: 2D65C3577C394475BCA2BC7100596C01 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:42Z' + status: 200 OK + code: 200 + duration: 3.8081454s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128484 + 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=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "128484" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 198e65c6-dc25-4074-a1a5-9b7a7d2d96f8 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183047Z:198e65c6-dc25-4074-a1a5-9b7a7d2d96f8 + X-Msedge-Ref: + - 'Ref A: 731F123366D94E4A96C2396A4F1AC7C4 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:46Z' + status: 200 OK + code: 200 + duration: 1.3696206s + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "537" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ad608763-f866-4bd8-96f0-6af4dbb4824e + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183048Z:ad608763-f866-4bd8-96f0-6af4dbb4824e + X-Msedge-Ref: + - 'Ref A: 65CC8FA83B60499AAF81E77E2D7D7325 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:47Z' + status: 200 OK + code: 200 + duration: 620.9371ms + - 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d + 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: + - Mon, 04 Nov 2024 18:30:48 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: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7212a132-faf4-46a9-9f3a-e9950bb60bf9 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183048Z:7212a132-faf4-46a9-9f3a-e9950bb60bf9 + X-Msedge-Ref: + - 'Ref A: 2EEB7491FE914550B236A84C2B78E5A9 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:48Z' + status: 200 OK + code: 200 + duration: 480.5169ms + - id: 7 + 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-w46381e"},"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-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"}}' + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011/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-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w46381e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:48Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"b878dfbea2a29d5aa692132a6f4ea386","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-w46381e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w46381e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"validatedResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im/providers/Microsoft.Authorization/roleAssignments/b2e423d4-f628-5f13-91f3-38d4fbf61642"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "2118" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30:50 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" X-Ms-Request-Id: - - 86844907-56bb-41f2-8b58-b7b5768841d9 + - a4b206b7-87d6-4f10-868e-7f54cffd71e7 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002943Z:86844907-56bb-41f2-8b58-b7b5768841d9 + - WESTUS2:20241104T183050Z:a4b206b7-87d6-4f10-868e-7f54cffd71e7 X-Msedge-Ref: - - 'Ref A: 526EE63FE0B645458CA0A75F26684535 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:40Z' + - 'Ref A: 4B31666CFE634C3181921BAD821C4CDC Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:48Z' status: 200 OK code: 200 - duration: 2.840301s - - id: 1 + duration: 1.709168s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 4100 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-w46381e"},"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-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"}}' form: {} headers: Accept: @@ -88,11 +567,86 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "4100" + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1470 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w46381e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:50Z"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T18:30:52.3780636Z","duration":"PT0.000133S","correlationId":"b878dfbea2a29d5aa692132a6f4ea386","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-w46381e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w46381e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/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-w46381e-1730745011/operationStatuses/08584708618348691235?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "1470" + Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:30:52 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: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Deployment-Engine-Version: + - 1.158.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 2bb391a8-3229-44f6-8b7d-55824dcbb8c8 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183053Z:2bb391a8-3229-44f6-8b7d-55824dcbb8c8 + X-Msedge-Ref: + - 'Ref A: 14B6DA70500D4306A05235A5044DF10D Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:30:50Z' + status: 201 Created + code: 201 + duration: 2.8160253s + - id: 9 + 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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011/operationStatuses/08584708618348691235?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -100,18 +654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2147660 + 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=1ZDdToNAEIWfhb1uE5YfY3oHztZUncGFXQzeNRUJP4FEaYBteHeptS%2bgV15MciZzJvnOObFD1%2fZle9z3Zdeqrs7bT7Y5MREkSidn1eZj%2f7z%2f6Muz4TGf2IZx69YilY1osjVbfTvibrjeuO1Zcb0NEYpB6ldALT2CMIyhAWmnW9TCJhWCVOkdqbf3mFP0lNhDBHrxHVyCzF1%2blwk4GWFo4pRA7S36Bms5ktnZqNAnUwxsXv2gOr9jdZ2%2fsjoRZIYAR4Ta4MSlsscHyRsRpyEq3lCsfR1V6T2qwkSw87EKDFYZRyMHNLhkEetzjhfxbyq%2foC6Vt8emuZK7l3WevwA%3d","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "2147660" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:50 GMT + - Mon, 04 Nov 2024 18:31:53 GMT Expires: - "-1" Pragma: @@ -123,19 +677,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b878dfbea2a29d5aa692132a6f4ea386 + 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 + - 64fd9e42-526a-40ef-a016-585bbff8be9e X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002950Z:878ea6fa-c1d8-4665-bb99-e34e9e92f83a + - WESTUS2:20241104T183153Z:64fd9e42-526a-40ef-a016-585bbff8be9e X-Msedge-Ref: - - 'Ref A: 7C49E4F125E74981BE3B311DC421DE5F Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:43Z' + - 'Ref A: 4B40FA076C6442539B3C31A419D39438 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:31:53Z' status: 200 OK code: 200 - duration: 6.8367698s - - id: 2 + duration: 270.7713ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -154,10 +710,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -165,18 +721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322363 + content_length: 2070 uncompressed: false - body: '{"value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w46381e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:50Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:31:30.1720252Z","duration":"PT37.7940946S","correlationId":"b878dfbea2a29d5aa692132a6f4ea386","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-w46381e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w46381e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stehl5xxosdf7im"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im/providers/Microsoft.Authorization/roleAssignments/b2e423d4-f628-5f13-91f3-38d4fbf61642"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "322363" + - "2070" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:52 GMT + - Mon, 04 Nov 2024 18:31:53 GMT Expires: - "-1" Pragma: @@ -188,30 +744,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - b878dfbea2a29d5aa692132a6f4ea386 + 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 + - d3336da9-9329-4091-9fad-5d0818290cbd X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002952Z:5101725d-f914-468c-9bf5-20e8998a6be3 + - WESTUS2:20241104T183153Z:d3336da9-9329-4091-9fad-5d0818290cbd X-Msedge-Ref: - - 'Ref A: 2A95E8664F494D17B4E8BA246CB6EB44 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:50Z' + - 'Ref A: DEAC709F969F415C984864F3D7E6DFDB Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:31:53Z' status: 200 OK code: 200 - duration: 1.5079454s - - id: 3 + duration: 167.761ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4100 + content_length: 0 transfer_encoding: [] trailer: {} 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: "" form: {} headers: Accept: @@ -220,36 +778,99 @@ interactions: - gzip Authorization: - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; windows/amd64) + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w46381e%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 325 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e","name":"rg-azdtest-w46381e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","DeleteAfter":"2024-11-04T19:30:50Z"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache Content-Length: - - "4100" + - "325" Content-Type: + - application/json; charset=utf-8 + Date: + - Mon, 04 Nov 2024 18:31:53 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - b878dfbea2a29d5aa692132a6f4ea386 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 30be4dea-2e74-4732-8741-4b2d2f4a9bb9 + X-Ms-Routing-Request-Id: + - WESTUS2:20241104T183154Z:30be4dea-2e74-4732-8741-4b2d2f4a9bb9 + X-Msedge-Ref: + - 'Ref A: 2680B996801F4123917358418475203D Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:31:54Z' + status: 200 OK + code: 200 + duration: 74.0006ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED User-Agent: - - azsdk-go-armresources.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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 - method: PUT + - d587eb73b80da85ff1c102890d9c911e + 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: 1470 + content_length: 1785276 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011","location":"eastus2","name":"azdtest-w46381e-1730745011","properties":{"correlationId":"b878dfbea2a29d5aa692132a6f4ea386","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e","resourceName":"rg-azdtest-w46381e","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT37.7940946S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im/providers/Microsoft.Authorization/roleAssignments/b2e423d4-f628-5f13-91f3-38d4fbf61642"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stehl5xxosdf7im"}},"parameters":{"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:50Z"},"environmentName":{"type":"String","value":"azdtest-w46381e"},"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-11-04T18:31:30.1720252Z"},"tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"type":"Microsoft.Resources/deployments"}]}' 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 Cache-Control: - no-cache Content-Length: - - "1470" + - "1785276" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:29:55 GMT + - Mon, 04 Nov 2024 18:32:06 GMT Expires: - "-1" Pragma: @@ -261,21 +882,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b - X-Ms-Deployment-Engine-Version: - - 1.95.0 - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "1199" + - d587eb73b80da85ff1c102890d9c911e + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16500" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1100" X-Ms-Request-Id: - - 81481314-7edb-4d58-a38a-797b34e3bf0e + - 9af0ba79-f0f3-4144-a640-8eba4985ed5f X-Ms-Routing-Request-Id: - - WESTUS2:20240823T002955Z:81481314-7edb-4d58-a38a-797b34e3bf0e + - WESTUS2:20241104T183206Z:9af0ba79-f0f3-4144-a640-8eba4985ed5f X-Msedge-Ref: - - 'Ref A: 34721CBFCBC3433E814EE1C25BDE7CA7 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:29:52Z' - status: 201 Created - code: 201 - duration: 3.0839196s - - id: 4 + - 'Ref A: 1DCC1FB64F854DEA80E62D65C744ED97 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:00Z' + status: 200 OK + code: 200 + duration: 6.4858773s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -294,10 +915,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VHbjoIwEP0W%2b6xJ6yVR38AOiaudQjtlg28GXVc0kOxiQIz%2fvmD0B3zbt5mcM5NzubG0yMtjftmWxyKn4rTPf9n8xj7BkrNDNs8v53Ofgfdcbyzf12W4%2fSmP3cFqf2VzJnrTHlJSqyYZsP6DYYrqhQk%2b7ZlT4Ct5qCK3kcpFY5S%2bb%2bRZRjwOlAOO5MuI4gXS7ssI1GvLKy1dy0trJGg%2fL7mipEHyKrQCLQQtH2qdfYCitFHSmyC5ofIGA3Z%2f6e2M%2fAu5C0Ay3trZV95d%2fOCMDuE9D2P%2bfuS0FJrUREk3UlnCVXYYaStWkcO14zPdRR7DDKgpribwNzF8h5S1M4iQTruww1uu%2f6gmS6946Cq53%2f8A method: GET response: proto: HTTP/2.0 @@ -305,18 +926,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 1738781 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=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "22" + - "1738781" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:56 GMT + - Mon, 04 Nov 2024 18:32:10 GMT Expires: - "-1" Pragma: @@ -328,19 +949,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - d587eb73b80da85ff1c102890d9c911e + 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 + - 58fea8bd-78fd-4e94-96e9-b133b06ed292 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003056Z:2a0a16cd-f9e0-4fa5-a9a2-c8ee27a9af4f + - WESTUS2:20241104T183211Z:58fea8bd-78fd-4e94-96e9-b133b06ed292 X-Msedge-Ref: - - 'Ref A: 3B562B9342914AC5A34C7053D7BD0381 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:30:56Z' + - 'Ref A: A0F6D4224AF44C4592FE51A575FE257A Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:07Z' status: 200 OK code: 200 - duration: 436.8935ms - - id: 5 + duration: 4.0060155s + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -359,10 +982,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1ZHPaoNAEMafxT0raOIheIvZCU2T3Y27M5b0FowtVlmhNagNvnu11ofo7fvzG%2fhgHiyrbVPY%2b7Upaot1mdsvFj0YbA2SWU3S5l1zvn42xUQc855FLHA2jsRLJ74vHnN%2fCV23Sxf4G0eX%2b1jw9zahVy4oCSWPY80rnvjpXhD4EmOeYLqTeHvTgVQn47eK08hlvUBYqfF21KHg0Mk%2bQAPVISXo1cczCMx6hUmosFyL1vPY4P7t%2fTdzX8AgkFZnYJG9V5XLpoTMerF0NIrwabFzO75jhncgUW9PZOZgGH4A method: GET response: proto: HTTP/2.0 @@ -370,18 +993,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2069 + content_length: 1207133 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2069" + - "1207133" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:56 GMT + - Mon, 04 Nov 2024 18:32:14 GMT Expires: - "-1" Pragma: @@ -393,19 +1016,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - d587eb73b80da85ff1c102890d9c911e + 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 + - 6fd7103d-85fa-4d1b-be28-64351e3c105d X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003056Z:79cdd497-c815-4b62-a9e0-aa66b3e723a4 + - WESTUS2:20241104T183214Z:6fd7103d-85fa-4d1b-be28-64351e3c105d X-Msedge-Ref: - - 'Ref A: 372AF466D41044779DD28931E2E3456E Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:30:56Z' + - 'Ref A: D5EC9BB89BC24BF2BB31A3E23137A9F8 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:11Z' status: 200 OK code: 200 - duration: 461.185ms - - id: 6 + duration: 3.479912s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -419,17 +1044,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=1VLdToMwFH6W9RoSmJos3BVaom49HfR0Bu8WxAUhkCgLPwvvLpURjS9gvOo57deT7%2bdcSFpXTV6dj01eV1gXWfVBvAvhVKFWa1NWWdfsj%2b9NbhDbrCcecVebFWDSiSGxifWFiOt2eXOdzSouQl%2bwUxvpZyZ0dAvM92NWssg5hEJzB9BnER4CwJfX2AW5U04rmZ5waQ8s6YAVPaBeS0x7EbigQj8SmHby7ZFPZy%2fRzBAunGybjNaV77%2bhG1CgjBqTiVedy9IiT9wY%2fhcCOkA%2bJfngCEwGQNqCmvzm4ZQPX%2fweBKN3Jg9BZ78N3YADxnRnWH9r4DqWe%2f7zRqubpdVbJTXeL%2b2seVqy%2bfuveeP4CQ%3d%3d method: GET response: proto: HTTP/2.0 @@ -437,18 +1060,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 325 + content_length: 128484 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: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "325" + - "128484" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:30:56 GMT + - Mon, 04 Nov 2024 18:32:15 GMT Expires: - "-1" Pragma: @@ -460,19 +1083,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 19b9157be4b2ddeef58ecc67c1aef76b + - d587eb73b80da85ff1c102890d9c911e + 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 + - 3438136c-6fa9-4e91-837b-dc38f8e753dd X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003057Z:66716cec-9f8a-4785-b19c-cc5a504be9eb + - WESTUS2:20241104T183216Z:3438136c-6fa9-4e91-837b-dc38f8e753dd X-Msedge-Ref: - - 'Ref A: 44F8B9A1C0F44523904B77318841FA41 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:30:56Z' + - 'Ref A: 441567CC311B4603BBE37BBE76800B65 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:14Z' status: 200 OK code: 200 - duration: 69.7392ms - - id: 7 + duration: 1.1768926s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -486,17 +1111,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZDBboMwEES%2fBZ9BgoRDxA2wUdvEdrDXVOktorSiICO1REAj%2fr04iaOqve3Mzq705ozKTve1Ph37utPQNZX%2bQtEZkViCkisU6VPbujdp1TMxSxPT1djvj599ba631YQiFDgbh8FhpN8HD7mXhOgGuwv8jSOaLKH4fcjVC6YqDxlOEoFbnPtFRhXxGSQ4hyJl8PomAsZ30h84VkuunCiQFV9ulzmkmIxsCkCS9rFQZOIfT4RCOXHIQw7Nmg6eh2YXZSJmKUkJAxHvLIPkCh5unmG5cqYxi3Fs4K1jWP%2fFjEmU4HvyO6bk2kq1vfy38lrYvc0%2f%2f%2bb5Bw%3d%3d method: GET response: proto: HTTP/2.0 @@ -504,18 +1127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2148316 + content_length: 537 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=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d","value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2148316" + - "537" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:07 GMT + - Mon, 04 Nov 2024 18:32:16 GMT Expires: - "-1" Pragma: @@ -527,19 +1150,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 32dabd39-9e57-4da6-aafa-fb670eb2715c X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003107Z:ba7ddcce-706a-4901-af59-03fe8f326845 + - WESTUS2:20241104T183216Z:32dabd39-9e57-4da6-aafa-fb670eb2715c X-Msedge-Ref: - - 'Ref A: C0E814A2D0E74D818C5709D7D67B449F Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:01Z' + - 'Ref A: 65032834740D4FE8ACD62627CD30CFF6 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:16Z' status: 200 OK code: 200 - duration: 5.5021174s - - id: 8 + duration: 402.7735ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -558,10 +1183,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZZBBb4MwDIV%2fS3MuEnQ7VNwCCZrWximJ04ndKsYqBgrSRgWs4r%2bvaZdp2k7xe%2f7yZPtMys72tT0d%2brqz2DWV%2fSDxmTxxjUa7ylZjvzu897UDNtVEYhIt1gvAYhSfRUCWV0J1g%2b9F4XqhmiwR7Djk5pkJk98DSxLFWpaH%2b0wYHgImLMd9CvjyqiKQWx0OkpkLV07AihFYMwGalcRyEmkEOktygeUo3x755Z0kugwRwTEIyLwknLpxVyS2p7b10qtMUUh5ygEV3XpTS4MP355b9PYxpUAZdWnecYf4hzmTGyV3%2fDdm9J2XZnPN9%2fJ2zZ%2fx%2fuTN8xc%3d method: GET response: proto: HTTP/2.0 @@ -569,18 +1194,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 326047 + content_length: 12 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "326047" + - "12" Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:08 GMT + - Mon, 04 Nov 2024 18:32:16 GMT Expires: - "-1" Pragma: @@ -592,19 +1217,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - b28e91d8-6037-4a60-82dd-9bc0fa133fac X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003108Z:beceab3b-6d71-4fbc-87ea-91ae4736644f + - WESTUS2:20241104T183216Z:b28e91d8-6037-4a60-82dd-9bc0fa133fac X-Msedge-Ref: - - 'Ref A: 84FBB74C38BB4217A37975E03E13F49C Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:07Z' + - 'Ref A: 5117306FEE0B41E6AC0FA5041FB5D615 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:16Z' status: 200 OK code: 200 - duration: 1.4850557s - - id: 9 + duration: 379.3722ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -625,10 +1252,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -636,18 +1263,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-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w46381e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:50Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:31:30.1720252Z","duration":"PT37.7940946S","correlationId":"b878dfbea2a29d5aa692132a6f4ea386","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-w46381e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w46381e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stehl5xxosdf7im"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im/providers/Microsoft.Authorization/roleAssignments/b2e423d4-f628-5f13-91f3-38d4fbf61642"}]}}' 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, 04 Nov 2024 18:32:16 GMT Expires: - "-1" Pragma: @@ -659,19 +1286,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 04ae938a-dbbd-421e-bef3-bd951b0769c0 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003109Z:9bd5aa4f-6f3e-4e38-afd6-502566e05985 + - WESTUS2:20241104T183217Z:04ae938a-dbbd-421e-bef3-bd951b0769c0 X-Msedge-Ref: - - 'Ref A: 3396469BEFB444CF8A83A615B07DD2DC Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:08Z' + - 'Ref A: 94F1409920914F40B49A22007794BC0B Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:16Z' status: 200 OK code: 200 - duration: 188.988ms - - id: 10 + duration: 184.852ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -692,10 +1321,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w46381e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -705,7 +1334,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-w46381e","name":"rg-azdtest-w46381e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","DeleteAfter":"2024-11-04T19:30:50Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -714,7 +1343,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:09 GMT + - Mon, 04 Nov 2024 18:32:16 GMT Expires: - "-1" Pragma: @@ -726,19 +1355,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 267d05bd-affc-45e3-991e-4584be918133 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003109Z:77e6de7a-a6f2-49fc-b99e-9c82b449fd4e + - WESTUS2:20241104T183217Z:267d05bd-affc-45e3-991e-4584be918133 X-Msedge-Ref: - - 'Ref A: 481063EE5C534DF78EB78CCFEB9E661D Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:09Z' + - 'Ref A: F7D8F1ED3EE24832B3735C35AD03D3ED Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:17Z' status: 200 OK code: 200 - duration: 77.8723ms - - id: 11 + duration: 45.6719ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -759,10 +1390,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -772,7 +1403,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-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im","name":"stehl5xxosdf7im","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e"}}]}' headers: Cache-Control: - no-cache @@ -781,7 +1412,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:09 GMT + - Mon, 04 Nov 2024 18:32:17 GMT Expires: - "-1" Pragma: @@ -793,19 +1424,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - a7ffdefc-a07b-423d-984e-18c892611269 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003109Z:720ec1f1-e7f2-4c5b-a188-23d2648aa9a7 + - WESTUS2:20241104T183217Z:a7ffdefc-a07b-423d-984e-18c892611269 X-Msedge-Ref: - - 'Ref A: 88365C9036EB4DD1B56B9C35A2507548 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:09Z' + - 'Ref A: E8F1D75979B9436F897077AF1C905597 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:17Z' status: 200 OK code: 200 - duration: 749.4663ms - - id: 12 + duration: 176.9031ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -826,10 +1459,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -837,18 +1470,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-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w46381e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:50Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:31:30.1720252Z","duration":"PT37.7940946S","correlationId":"b878dfbea2a29d5aa692132a6f4ea386","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-w46381e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w46381e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stehl5xxosdf7im"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im/providers/Microsoft.Authorization/roleAssignments/b2e423d4-f628-5f13-91f3-38d4fbf61642"}]}}' 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, 04 Nov 2024 18:32:17 GMT Expires: - "-1" Pragma: @@ -860,19 +1493,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 218c6a81-4230-4dcd-b606-1a5b7b158528 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003110Z:1b8e1386-1449-43d3-a3f6-a7ae1d04b902 + - WESTUS2:20241104T183217Z:218c6a81-4230-4dcd-b606-1a5b7b158528 X-Msedge-Ref: - - 'Ref A: BB5954EAFA5247F2885C7CC3CA017AF2 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:10Z' + - 'Ref A: 66EAF1B74B564536B058A83DAE043E54 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:17Z' status: 200 OK code: 200 - duration: 272.9074ms - - id: 13 + duration: 213.509ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -893,10 +1528,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-w46381e%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -906,7 +1541,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-w46381e","name":"rg-azdtest-w46381e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","DeleteAfter":"2024-11-04T19:30:50Z"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -915,7 +1550,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:10 GMT + - Mon, 04 Nov 2024 18:32:17 GMT Expires: - "-1" Pragma: @@ -927,19 +1562,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 55a75f29-99ac-4cd3-b3a5-59eb8fa28816 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003110Z:adeb23f8-874f-4041-910a-70d977c3bc69 + - WESTUS2:20241104T183217Z:55a75f29-99ac-4cd3-b3a5-59eb8fa28816 X-Msedge-Ref: - - 'Ref A: FE2E899AF4604A318D4D7D858D57B1CD Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:10Z' + - 'Ref A: 807819DDBAC842C8A3AF18E321CAA919 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:17Z' status: 200 OK code: 200 - duration: 66.1864ms - - id: 14 + duration: 93.456ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -960,10 +1597,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -973,7 +1610,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-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im","name":"stehl5xxosdf7im","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e"}}]}' headers: Cache-Control: - no-cache @@ -982,7 +1619,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:31:10 GMT + - Mon, 04 Nov 2024 18:32:17 GMT Expires: - "-1" Pragma: @@ -994,19 +1631,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - cde5bcbd-8304-4c76-8c7c-1220acf73929 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003111Z:2d6409f7-9d39-43c9-9335-d3931f5fe876 + - WESTUS2:20241104T183217Z:cde5bcbd-8304-4c76-8c7c-1220acf73929 X-Msedge-Ref: - - 'Ref A: B6233A6D37DD47E09D06A0224BF47D17 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:10Z' + - 'Ref A: 5E62DFC8874E4430A469199D30B543B8 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:17Z' status: 200 OK code: 200 - duration: 609.5469ms - - id: 15 + duration: 210.1992ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1027,10 +1666,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-w46381e?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -1047,11 +1686,11 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:31:12 GMT + - Mon, 04 Nov 2024 18:32:18 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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNDYzODFFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663420004260111&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=Lj0z6cSpzuJnHLnKaLWevZuC4xepmFLmMBOHNPXiKHMlHXORwDXwCINks7ucqvGw0Gi4htsFlM8zY7WVMYC76b5VYw5aGi_WsN8lwYrNyRtVM_w5oQu3OLkyRvnFuTWjt5hEVeuqsLOMqKWMZde818pMW_S1r-IaNrdJH4Lr0aLUd0roewMps5_skqzjFpFZIpg32hhZFtahYG6cL0GAQFGINS4jCfmJu_f3NfA360J9rcu2DiSknC9cRI3NSVgFTovgziP7e6eDcusXnIh0aOUf9ia0Oc42yuDYATcn5rCT_DZJVoFI7VQzGhvECUAVNWhbSuCjZBMEcjkFsmVuAA&h=TYA077XOqpUXvME9xaxqiz3yEVITKr5GFXrI_civI2c Pragma: - no-cache Retry-After: @@ -1063,19 +1702,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e 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 + - aed0f46a-4b4e-47f2-a257-5d3ac4324327 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003112Z:480bbcf8-a348-4172-a327-0a3fc4a61c71 + - WESTUS2:20241104T183218Z:aed0f46a-4b4e-47f2-a257-5d3ac4324327 X-Msedge-Ref: - - 'Ref A: 6364753D485649068C6C1885FB1DDD83 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:31:11Z' + - 'Ref A: E847ED460F234946ACE7191633244BD8 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:32:17Z' status: 202 Accepted code: 202 - duration: 1.4890162s - - id: 16 + duration: 911.3894ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1094,10 +1735,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRXNDYzODFFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638663420004260111&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=Lj0z6cSpzuJnHLnKaLWevZuC4xepmFLmMBOHNPXiKHMlHXORwDXwCINks7ucqvGw0Gi4htsFlM8zY7WVMYC76b5VYw5aGi_WsN8lwYrNyRtVM_w5oQu3OLkyRvnFuTWjt5hEVeuqsLOMqKWMZde818pMW_S1r-IaNrdJH4Lr0aLUd0roewMps5_skqzjFpFZIpg32hhZFtahYG6cL0GAQFGINS4jCfmJu_f3NfA360J9rcu2DiSknC9cRI3NSVgFTovgziP7e6eDcusXnIh0aOUf9ia0Oc42yuDYATcn5rCT_DZJVoFI7VQzGhvECUAVNWhbSuCjZBMEcjkFsmVuAA&h=TYA077XOqpUXvME9xaxqiz3yEVITKr5GFXrI_civI2c method: GET response: proto: HTTP/2.0 @@ -1114,7 +1755,7 @@ interactions: Content-Length: - "0" Date: - - Fri, 23 Aug 2024 00:32:28 GMT + - Mon, 04 Nov 2024 18:33:35 GMT Expires: - "-1" Pragma: @@ -1126,19 +1767,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 6b4c2891-c1f4-4a06-bf8d-8407ebe5e4bd X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003228Z:2f625e38-032c-44b0-9cbf-74c6761668d1 + - WESTUS2:20241104T183335Z:6b4c2891-c1f4-4a06-bf8d-8407ebe5e4bd X-Msedge-Ref: - - 'Ref A: EF299D1D4A724CD098AAA2A649EF8A1C Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:32:28Z' + - 'Ref A: 518880F1270A492492EEE7BB2A57E67D Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:33:35Z' status: 200 OK code: 200 - duration: 183.9741ms - - id: 17 + duration: 193.8613ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1159,10 +1802,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1170,18 +1813,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-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-w46381e","azd-provision-param-hash":"b95c171bd62c6892dc10f48a554111db4b4366e7c7d1c9130b6fc8df7eb28df4"},"properties":{"templateHash":"14129150016731765032","parameters":{"environmentName":{"type":"String","value":"azdtest-w46381e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"547aa7c1-2f57-48d9-8969-ecf696948ca7"},"deleteAfterTime":{"type":"String","value":"2024-11-04T19:30:50Z"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:31:30.1720252Z","duration":"PT37.7940946S","correlationId":"b878dfbea2a29d5aa692132a6f4ea386","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-w46381e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-w46381e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"}],"outputs":{"azurE_STORAGE_ACCOUNT_NAME":{"type":"String","value":"stehl5xxosdf7im"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-w46381e/providers/Microsoft.Storage/storageAccounts/stehl5xxosdf7im/providers/Microsoft.Authorization/roleAssignments/b2e423d4-f628-5f13-91f3-38d4fbf61642"}]}}' 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, 04 Nov 2024 18:33:35 GMT Expires: - "-1" Pragma: @@ -1193,19 +1836,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 3fded03a-b796-420d-a5c4-f4e0de6c4d48 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003228Z:b2251134-642f-4cf9-a7cb-b9b1c92c6b17 + - WESTUS2:20241104T183335Z:3fded03a-b796-420d-a5c4-f4e0de6c4d48 X-Msedge-Ref: - - 'Ref A: B2F20C44FB854A60BBD5A9185761867E Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:32:28Z' + - 'Ref A: E1798321A4944E0F8796C5A3CF3BCF5D Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:33:35Z' status: 200 OK code: 200 - duration: 239.8586ms - - id: 18 + duration: 245.3775ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1216,7 +1861,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-w46381e"}}' form: {} headers: Accept: @@ -1230,10 +1875,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1241,20 +1886,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-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w46381e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-04T18:33:38.7979065Z","duration":"PT0.0000936S","correlationId":"d587eb73b80da85ff1c102890d9c911e","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-w46381e-1730745011/operationStatuses/08584708616690659188?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, 04 Nov 2024 18:33:38 GMT Expires: - "-1" Pragma: @@ -1266,21 +1911,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e X-Ms-Deployment-Engine-Version: - - 1.95.0 + - 1.158.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 + - f180261a-4446-4d5f-9450-d5e6d0ba7af1 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003231Z:4827f6e7-44c0-4394-984b-3d8df9d8a2be + - WESTUS2:20241104T183339Z:f180261a-4446-4d5f-9450-d5e6d0ba7af1 X-Msedge-Ref: - - 'Ref A: 9304E5AE2C2344E181EB1B41F7D88B2C Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:32:28Z' + - 'Ref A: 3B94FCD4382B40A2B41E3B8EBFFEA855 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:33:35Z' status: 200 OK code: 200 - duration: 2.1783334s - - id: 19 + duration: 3.3055534s + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1299,10 +1946,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011/operationStatuses/08584708616690659188?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1321,7 +1968,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:33:01 GMT + - Mon, 04 Nov 2024 18:34:09 GMT Expires: - "-1" Pragma: @@ -1333,19 +1980,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 06232247-7269-4921-acee-3ef5d1334136 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003301Z:67f4f78a-aac8-42a9-b189-98d007a6d09b + - WESTUS2:20241104T183409Z:06232247-7269-4921-acee-3ef5d1334136 X-Msedge-Ref: - - 'Ref A: 73FD7DFEEE57418BA1A02A8EEB6655F2 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:33:01Z' + - 'Ref A: C00529B4A49D4FC39E8331668EC8915F Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:34:09Z' status: 200 OK code: 200 - duration: 407.2506ms - - id: 20 + duration: 395.6483ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1364,10 +2013,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.2; Windows_NT),azdev/0.0.0-dev.0 (Go go1.23.2; 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 + - d587eb73b80da85ff1c102890d9c911e + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-w46381e-1730745011?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1377,7 +2026,7 @@ interactions: trailer: {} content_length: 604 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-w46381e-1730745011","name":"azdtest-w46381e-1730745011","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-w46381e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-04T18:33:41.882142Z","duration":"PT3.0843291S","correlationId":"d587eb73b80da85ff1c102890d9c911e","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -1386,7 +2035,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 23 Aug 2024 00:33:01 GMT + - Mon, 04 Nov 2024 18:34:09 GMT Expires: - "-1" Pragma: @@ -1398,19 +2047,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2a0ea63e4c5e51a01ffe0035f4afe71d + - d587eb73b80da85ff1c102890d9c911e + 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 + - 67ca9bcf-ff6d-4228-9c69-a23e0ead9327 X-Ms-Routing-Request-Id: - - WESTUS2:20240823T003302Z:7c569838-37e7-4185-aaf4-59d7a2a44cb1 + - WESTUS2:20241104T183410Z:67ca9bcf-ff6d-4228-9c69-a23e0ead9327 X-Msedge-Ref: - - 'Ref A: 42D823AFAC7A48B58D1A70DEC405E5E5 Ref B: CO6AA3150220051 Ref C: 2024-08-23T00:33:01Z' + - 'Ref A: 5E90094722FE4CA3AAFF04BFAAFED5D6 Ref B: CO6AA3150219019 Ref C: 2024-11-04T18:34:09Z' status: 200 OK code: 200 - duration: 456.8387ms + duration: 209.6557ms --- -env_name: azdtest-wf2e6bc +env_name: azdtest-w46381e subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1724372970" +time: "1730745011" 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..f564fda7c82 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://stehl5xxosdf7im.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\x65\x68\x6C\x35\x78\x78\x6F\x73\x64\x66\x37\x69\x6D\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, 04 Nov 2024 18:31:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c28907da-e01e-0011-58f3-f4752a000000 + - 3258e326-701e-005d-42e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 771.9815ms + duration: 1.2404716s - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest?restype=container + url: https://stehl5xxosdf7im.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, 04 Nov 2024 18:31:55 GMT Etag: - - '"0x8DCC30ADC3A43C0"' + - '"0x8DCFCFEF6372615"' Last-Modified: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 04 Nov 2024 18:31:56 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890994-e01e-0011-49f3-f4752a000000 + - 3258e473-701e-005d-37e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 201 Created code: 201 - duration: 92.6285ms + duration: 57.7437ms - 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: stehl5xxosdf7im.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.2; 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://stehl5xxosdf7im.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, 04 Nov 2024 18:31:55 GMT Etag: - - '"0x8DCC30ADC484141"' + - '"0x8DCFCFEF643474B"' Last-Modified: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 04 Nov 2024 18:31:56 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 + - 3258e491-701e-005d-4ee7-2ed5d5000000 X-Ms-Request-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 201 Created code: 201 - duration: 85.3153ms + duration: 58.4558ms - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://stehl5xxosdf7im.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\x65\x68\x6C\x35\x78\x78\x6F\x73\x64\x66\x37\x69\x6D\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\x30\x34\x20\x4E\x6F\x76\x20\x32\x30\x32\x34\x20\x31\x38\x3A\x33\x31\x3A\x35\x36\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\x46\x43\x46\x45\x46\x36\x33\x37\x32\x36\x31\x35\"\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, 04 Nov 2024 18:31:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890a1b-e01e-0011-3df3-f4752a000000 + - 3258e4ad-701e-005d-63e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 82.513ms + duration: 57.4807ms - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest/test-env/.env + url: https://stehl5xxosdf7im.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, 04 Nov 2024 18:31:55 GMT Etag: - - '"0x8DCC30ADC484141"' + - '"0x8DCFCFEF643474B"' Last-Modified: - - Fri, 23 Aug 2024 00:30:59 GMT + - Mon, 04 Nov 2024 18:31:56 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, 04 Nov 2024 18:31:56 GMT X-Ms-Lease-State: - available X-Ms-Lease-Status: - unlocked X-Ms-Request-Id: - - c2890a5b-e01e-0011-7af3-f4752a000000 + - 3258e4c9-701e-005d-75e7-2ed5d5000000 X-Ms-Server-Encrypted: - "true" X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 88.8975ms + duration: 71.4196ms - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://stehl5xxosdf7im.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\x65\x68\x6C\x35\x78\x78\x6F\x73\x64\x66\x37\x69\x6D\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\x30\x34\x20\x4E\x6F\x76\x20\x32\x30\x32\x34\x20\x31\x38\x3A\x33\x31\x3A\x35\x36\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\x46\x43\x46\x45\x46\x36\x33\x37\x32\x36\x31\x35\"\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, 04 Nov 2024 18:31:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890ab0-e01e-0011-37f3-f4752a000000 + - 3258e4e5-701e-005d-06e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 81.6615ms + duration: 50.079ms - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest?comp=list&restype=container + url: https://stehl5xxosdf7im.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\x65\x68\x6C\x35\x78\x78\x6F\x73\x64\x66\x37\x69\x6D\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\x30\x34\x20\x4E\x6F\x76\x20\x32\x30\x32\x34\x20\x31\x38\x3A\x33\x31\x3A\x35\x36\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\x30\x34\x20\x4E\x6F\x76\x20\x32\x30\x32\x34\x20\x31\x38\x3A\x33\x31\x3A\x35\x36\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\x46\x43\x46\x45\x46\x36\x34\x33\x34\x37\x34\x42\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, 04 Nov 2024 18:31:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890afd-e01e-0011-7af3-f4752a000000 + - 3258e4fb-701e-005d-12e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 83.5372ms + duration: 65.447ms - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/?comp=list + url: https://stehl5xxosdf7im.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\x65\x68\x6C\x35\x78\x78\x6F\x73\x64\x66\x37\x69\x6D\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\x30\x34\x20\x4E\x6F\x76\x20\x32\x30\x32\x34\x20\x31\x38\x3A\x33\x31\x3A\x35\x36\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\x46\x43\x46\x45\x46\x36\x33\x37\x32\x36\x31\x35\"\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, 04 Nov 2024 18:31:55 GMT Server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 X-Ms-Request-Id: - - c2890b66-e01e-0011-56f3-f4752a000000 + - 3258e511-701e-005d-20e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 200 OK code: 200 - duration: 82.7616ms + duration: 64.1209ms - 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: stehl5xxosdf7im.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.2; Windows_NT) X-Ms-Version: - "2023-11-03" - url: https://stuhtg4ux2gefpk.blob.core.windows.net:443/azdtest/test-env/.env + url: https://stehl5xxosdf7im.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, 04 Nov 2024 18:31:55 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 + - 3258e51e-701e-005d-29e7-2ed5d5000000 X-Ms-Version: - "2023-11-03" status: 202 Accepted code: 202 - duration: 90.4986ms + duration: 72.1049ms --- -time: "1724373056" +time: "1730745114"